summaryrefslogtreecommitdiff
path: root/categories.html
blob: dba5f4f0a81c0798fc059f6393c2807f07348e27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
layout: page
title: Categories
header: Posts By Category
group: navigation
---

<ul class="tag_box">
  {% assign categories_list = site.categories %}
  {% include helpers/categories_list.html %}
</ul>


{% for category in site.categories %} 
  <h2 id="{{ category[0] }}-ref">{{ category[0] | join: "/" }}</h2>
  <ul>
    {% assign pages_list = category[1] %}  
    {% include helpers/pages_list.html %}
  </ul>
{% endfor %}