-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsitemap.html
32 lines (32 loc) · 943 Bytes
/
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
---
layout: default
title: Sitemap
---
<h1 class="page-header">Sitemap</h1>
<div class="row">
<div class="col-md-3">
<h3 class="media-heading">Pages</h3>
<ul class="list-unstyled">
<li><a href="{{ site.baseurl }}">Home</a></li>
<li><a href="/about">About Us</a></li>
<li><a href="/contact">Contact Us</a></li>
<li><a href="/privacy">Privacy Policy</a></li>
</ul>
</div>
<div class="col-md-3">
<h3 class="media-heading">Extensions</h3>
<ul class="list-unstyled">
{% for post in site.data.extensions %}
<li><a href="extensions/{{ post[1]["url"] }}">{{ post[1]["title"] }}</a></li>
{% endfor %}
</ul>
</div>
<div class="col-md-6">
<h3 class="media-heading">Blog</h3>
<ul class="list-unstyled">
{% for post in site.categories.blog %}
<li><a href="{{ post.url | remove:".html" }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
</div>