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