14 lines
259 B
HTML
14 lines
259 B
HTML
|
---
|
||
|
layout: default
|
||
|
title: Categories
|
||
|
use:
|
||
|
- posts_categories
|
||
|
---
|
||
|
<h2>Categories</h2>
|
||
|
|
||
|
<div>
|
||
|
{% for category,posts in data.posts_categories %}
|
||
|
<a href="{{ site.url }}/blog/categories/{{ category|url_encode(true) }}">{{ category }}</a>
|
||
|
{% endfor %}
|
||
|
</div>
|