-
Notifications
You must be signed in to change notification settings - Fork 1
/
categories.html
50 lines (49 loc) · 1.2 KB
/
categories.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
---
layout: page
title: Post Categories
description: Blog post categories on Nathan Totten's blog.
redirect_from:
- /category/facebook-c-sdk
- /category/facebook-sdk
- /category/node-js
- /category/notes
- /category/samples
- /category/windows-azure
- /category/windows-azure/page/2
- /tag/appfabric
- /tag/asp-net
- /tag/asp-net-mvc
- /tag/basecamp
- /tag/c
- /tag/cdn
- /tag/cloud-hosting
- /tag/email
- /tag/facebook
- /tag/facebook-c-sdk
- /tag/github
- /tag/google-apps
- /tag/iis
- /tag/magento
- /tag/nodejs
- /tag/open-source
- /tag/php
- /tag/security
- /tag/social-gaming-toolkit
- /tag/socket-io
- /tag/wcf
- /tag/windows-azure
- /tag/windows-azure-web-sites
---
<ul class="nav nav-pills">
{% for category in site.categories order:ascending %}
<li><a href="#{{ category[0] | downcase | remove:' ' | remove:'.' }}">{{ category[0] }}</a></li>
{% endfor %}
</ul>
{% for category in site.categories order:ascending %}
<h1 id="{{ category[0] | downcase | remove:' ' | remove:'.' }}">{{ category[0] }}</h1>
<ul class="unstyled">
{% for page in category[1] %}
<li><a href="{{ page.url }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
{% endfor %}