-
Notifications
You must be signed in to change notification settings - Fork 2
/
sitemap.html
44 lines (43 loc) · 1.28 KB
/
sitemap.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
---
layout: page
title: Sitemap
header: Sitemap
header_addon: Lost your way?
description: Sitemap for the tmplat homepage
keywords: tmplat, browser, extension, sitemap, pages, posts, site, map
---
<div class="row-fluid">
<div class="span4">
<h2>Pages</h2>
<ul class="unstyled">
<li><a href="/">Home</a></li>
<li><a href="/changes">Changes</a></li>
<li><a href="/docs/">Documentation</a></li>
<li><a href="/faq">Frequently Asked Questions</a></li>
<li>
<a href="/guide/">Guide</a>
<ul>
<li><a href="/guide/">Introduction</a></li>
<li><a href="/guide/standard">Standard</a></li>
<li><a href="/guide/lists-objects">Lists & Objects</a></li>
<li><a href="/guide/options">Options</a></li>
<li><a href="/guide/operations">Operations</a></li>
</ul>
</li>
<li><a href="/license">License</a></li>
<li><a href="/permissions">Permissions</a></li>
</ul>
</div>
<div class="span8">
<h2>Posts</h2>
{% if site.posts == empty %}
<em>None... yet!</em>
{% else %}
<ul class="unstyled">
{% for post in site.posts %}
<li><a href="{{ post.url }}">{{ post.title | escape }}</a></li>
{% endfor %}
</ul>
{% endif %}
</div>
</div>