-
Notifications
You must be signed in to change notification settings - Fork 10
/
siteindex.html
64 lines (59 loc) · 1.84 KB
/
siteindex.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
---
layout: siteindex
title: Site Map
permalink: /siteindex/
---
<div class="row">
<div class="col-lg-8">
<!-- Shotcut Responsive -->
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-1305424236533187"
data-ad-slot="3403753557"
data-ad-format="auto"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div><!-- /col-lg-8 -->
</div><!-- /row -->
<div class="row">
<div class="col-md-6">
<h5>About</h5>
{% for page in site.pages sort_by="title" %}
{% if page.category == 'about' %}
<p><a href="{{ site.baseurl }}/{{ page.url }}">{{ page.title }}</a></p>
{% endif %}
{% endfor %}
<a href="{{ site.baseurl }}/blog/">News (Blog)</a><br>
<div class="spacing"></div>
</div><!-- /col-md-6 -->
<div class="col-md-6">
<h5>Help</h5>
{% for page in site.pages %}
{% if page.category == 'help' %}
<p><a href="{{ site.baseurl }}/{{ page.url }}">{{ page.title }}</a></p>
{% endif %}
{% endfor %}
<div class="spacing"></div>
</div><!-- /col-md-6 -->
</div><!-- /row -->
<div class="row">
<div class="col-md-6">
<h5>Technical Notes</h5>
{% for page in site.pages %}
{% if page.category == 'notes' %}
<p><a href="{{ site.baseurl }}/{{ page.url }}">{{ page.title }}</a></p>
{% endif %}
{% endfor %}
<div class="spacing"></div>
</div><!-- /col-md-6 -->
<div class="col-md-6">
<h5>Other</h5>
{% for page in site.pages %}
{% if page.category == 'other' %}
<p><a href="{{ site.baseurl }}/{{ page.url }}">{{ page.title }}</a></p>
{% endif %}
{% endfor %}
<div class="spacing"></div>
</div><!-- /col-md-6 -->
</div><!-- /row -->