Skip to content
This repository was archived by the owner on Nov 14, 2017. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions _template.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
<li class="dropdown">
<a href="projects.html" class="dropdown-toggle" data-toggle="dropdown">Projects <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="projects.html">All projects</a></li>
<li class="nav-header">Software Dev Kits</li>
<li><a href="projects.html#dotnet">.NET SDK</a></li>
<li><a href="projects.html#nodejs">Node.js SDK</a></li>
Expand Down
4 changes: 2 additions & 2 deletions contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
<li class="dropdown">
<a href="projects.html" class="dropdown-toggle" data-toggle="dropdown">Projects <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="projects.html">All projects</a></li>
<li class="nav-header">Software Dev Kits</li>
<li><a href="projects.html#dotnet">.NET SDK</a></li>
<li><a href="projects.html#nodejs">Node.js SDK</a></li>
Expand All @@ -62,8 +63,7 @@

<div class="container">

<h1>Support &amp; Contacts</h1>
<p>Let's get in touch.</p>
<h1>Let's get in touch.</h1>

<h2 id="forums">Forum Support</h2>
<p>You'll find that the community on the Internet is probably the best
Expand Down
23 changes: 23 additions & 0 deletions css/azureopensource.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,26 @@ body {
code {
color: #333;
}

h3 {
font-size: 24.5px;
color: #777;
}

h1 {
padding-bottom: 20px;
}

.nav-tabs > .active > a {
background-color: #eee;
color: #333;
}

.nav-tabs > .active > a:hover {
background-color: #eee;
color: #333;
}

xx-section {
padding-top: 20px;
}
205 changes: 146 additions & 59 deletions guidelines.html

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,15 @@
<li class="dropdown">
<a href="projects.html" class="dropdown-toggle" data-toggle="dropdown">Projects <b class="caret"></b></a>
<ul class="dropdown-menu">
<li class="nav-header">Software Dev Kits</li>
<li><a href="projects.html">All projects</a></li>
<li class="nav-header">Software dev Kits</li>
<li><a href="projects.html#dotnet">.NET SDK</a></li>
<li><a href="projects.html#nodejs">Node.js SDK</a></li>
<li><a href="projects.html#java">Java SDK</a></li>
<li><a href="projects.html#php">PHP SDK</a></li>
<li><a href="projects.html#python">Python SDK</a></li>
<li class="divider"></li>
<li class="nav-header">More Projects</li>
<li class="nav-header">More projects</li>
<li><a href="projects.html#iisnode">iisnode</a></li>
<li class="divider"></li>
<li class="nav-header">WindowsAzure.com</li>
Expand Down
19 changes: 19 additions & 0 deletions js/azure.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
!function ($) {

$(function(){

var $window = $(window)

// side bar
setTimeout(function () {
$('.azure-nav-list').affix({
offset: {
top: function () { return $window.width() <= 980 ? 290 : 210 }
, bottom: 270
}
})
}, 100)

})

}(window.jQuery)
3 changes: 3 additions & 0 deletions projects.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
<li class="dropdown active">
<a href="projects.html" class="dropdown-toggle" data-toggle="dropdown">Projects <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="projects.html">All projects</a></li>
<li class="nav-header">Software Dev Kits</li>
<li><a href="projects.html#dotnet">.NET SDK</a></li>
<li><a href="projects.html#nodejs">Node.js SDK</a></li>
Expand All @@ -62,6 +63,8 @@

<div class="container">

<h1>Projects &amp; SDKs</h1>

<p>This page contains information about the open source aspect of many
of the Windows Azure SDKs, frameworks &amp; tools. If you want to use
the released versions of these products to develop your applications,
Expand Down
1 change: 1 addition & 0 deletions thanks.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
<li class="dropdown">
<a href="projects.html" class="dropdown-toggle" data-toggle="dropdown">Projects <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="projects.html">All projects</a></li>
<li class="nav-header">Software Dev Kits</li>
<li><a href="projects.html#dotnet">.NET SDK</a></li>
<li><a href="projects.html#nodejs">Node.js SDK</a></li>
Expand Down