---
layout: "default"
list_mode: true
generator: "taxonomy"
max_page: 7
taxonomy_attribute: "categories"
permalink: "/:name"
---
{% block content %}
{{ page.term }} category
{% if page.list_mode %}
{% include "posts-list.html" with { posts: page.pagination.items } %}
{% else %}
{% for post in page.pagination.items %}
{% include "post.html" %}
{% endfor %}
{% endif %}
{% include "paginator.html" %}
{% endblock %}