Files
website/_layouts/category_index.html
warlordjones 92cf00665a Local-ize the Swiss theme
Ready for bastardisation :D
2019-09-17 22:18:31 +01:00

14 lines
252 B
HTML

---
layout: page
---
{% if page.category_name %}
{% assign category_name = page.category_name %}
{% endif %}
<div class="container mx-auto">
{% for post in site.categories[category_name] %}
{% include post_block.html %}
{% endfor %}
</div>