{# SPDX-License-Identifier: Apache-2.0 OR MIT #}
{% extends "base.html" %}
{% block title %}Category: {{ category }}{% if site.title %} — {{ site.title }}{% endif %}{% endblock %}
{% block content %}
Category: {{ category }}
{{ posts | length }} page{% if posts | length != 1 %}s{% endif %} in {{ category }}.
{% for post in posts %}
{{ post.title }}
{% endfor %}
{% endblock %}