21 lines
431 B
HTML
21 lines
431 B
HTML
---
|
|
layout: page
|
|
title: Categories
|
|
header: Posts By Category
|
|
group: example-page
|
|
---
|
|
|
|
<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 %}
|
|
|