-
Notifications
You must be signed in to change notification settings - Fork 2
/
navigation.html
61 lines (42 loc) · 1.03 KB
/
navigation.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
---
layout: page
title : Navigation
header : Post Archive
group: navigation
---
<!-- post information -->
<h2> <p style="#FF0000"> Posts </h2>
{% include JB/setup %}
{% assign posts_collate = site.posts %}
{% include JB/posts_collate %}
<hr />
<!-- tag information -->
<h2><p style="#FF0000"> Tags </h2>
{% include JB/setup %}
<ul class="tag_box inline">
{% assign tags_list = site.tags %}
{% include JB/tags_list %}
</ul>
{% for tag in site.tags %}
<h2 id="{{ tag[0] }}-ref">{{ tag[0] }}</h2>
<ul>
{% assign pages_list = tag[1] %}
{% include JB/pages_list %}
</ul>
{% endfor %}
<hr />
<!-- categories information -->
<h2><p style="#FF0000"> Categories </h2>
{% include JB/setup %}
<ul class="tag_box inline">
{% assign categories_list = site.categories %}
{% include JB/categories_list %}
</ul>
{% for category in site.categories %}
<h2 id="{{ category[0] }}-ref">{{ category[0] | join: "/" }}</h2>
<ul>
{% assign pages_list = category[1] %}
{% include JB/pages_list %}
</ul>
{% endfor %}
<hr />