This repository has been archived by the owner on May 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 60
/
index.html
91 lines (69 loc) · 1.8 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
---
layout: default
description: "A quick reference guide to Microsoft Azure Web Sites features, functionality and tooling."
---
{% capture welcome_content %} {% include welcome.md %} {% endcapture %}
<section id="home">
{{ welcome_content | markdownify }}
</section>
{% for post in site.posts reversed %}
{% if post.categories contains "features" %}
<section id="service-features">
{{ post.content }}
</section>
{% endif %}
{% if post.categories contains "deployment" %}
<section id="deployment">
{{ post.content }}
</section>
{% endif %}
{% if post.categories contains "language" %}
<section id="language-guide">
<h1>Language Guide</h1>
{% if post.categories contains "aspnet" %}
<section id="aspnet">
{{ post.content }}
</section>
{% endif %}
{% if post.categories contains "nodejs" %}
<section id="nodejs">
{{ post.content }}
</section>
{% endif %}
{% if post.categories contains "php" %}
<section id="php">
{{ post.content }}
</section>
{% endif %}
{% if post.categories contains "python" %}
<section id="python">
{{ post.content }}
</section>
{% endif %}
</section>
{% endif %}
{% if post.categories contains "command-line" %}
<section id="cli-reference">
{% if post.categories contains "cli" %}
<section id="cross-platform">
{{ post.content }}
</section>
{% endif %}
{% if post.categories contains "powershell" %}
<section id="powershell">
{{post.content }}
</section>
{% endif %}
</section>
{% endif %}
{% if post.categories contains "samples" %}
<section id="samples">
{{ post.content }}
</section>
{% endif %}
{% if post.categories contains "additional-references" %}
<section id="additional-references">
{{ post.content }}
</section>
{% endif %}
{% endfor %}