forked from code4hk/code4hk.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblogs.html
51 lines (36 loc) · 843 Bytes
/
blogs.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
---
layout: page
title : Blogs
header : Blogs
group: navigation
---
{% include JB/setup %}
<h2>Archives</h2>
{% assign posts_collate = site.posts %}
{% include JB/posts_collate %}
<hr>
<h2>Categories</h2>
<ul class="tag_box inline">
{% assign categories_list = site.categories %}
{% include JB/categories_list %}
</ul>
{% for category in site.categories %}
<h3 id="{{ category[0] }}-ref">{{ category[0] | join: "/" }}</h3>
<ul>
{% assign pages_list = category[1] %}
{% include JB/pages_list %}
</ul>
{% endfor %}
<hr>
<h2>Tags</h2>
<ul class="tag_box inline">
{% assign tags_list = site.tags %}
{% include JB/tags_list %}
</ul>
{% for tag in site.tags %}
<h3 id="{{ tag[0] }}-ref">{{ tag[0] }}</h3>
<ul>
{% assign pages_list = tag[1] %}
{% include JB/pages_list %}
</ul>
{% endfor %}