You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mediarepo/_layouts/category_index.html

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>