Merge branch 'master' of git://github.com/plusjade/jekyll-bootstrap
[GalaxyBlog.git] / tags.html
blob5e216cb3b2172022f251b67aca7db4ba2bad05cb
1 ---
2 layout: page
3 title: Tags
4 header: Posts By Tag
5 group: navigation
6 ---
7 {% include JB/setup %}
9 <ul class="tag_box inline">
10 {% assign tags_list = site.tags %}
11 {% include JB/tags_list %}
12 </ul>
15 {% for tag in site.tags %}
16 <h2 id="{{ tag[0] }}-ref">{{ tag[0] }}</h2>
17 <ul>
18 {% assign pages_list = tag[1] %}
19 {% include JB/pages_list %}
20 </ul>
21 {% endfor %}