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