sculpin-from-scratch-app/source/blog/categories.html
2024-12-07 17:04:57 +00:00

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>