pyro/templates/category.html
Freyja Wildes 7cdaee3da5 [style][template] Make header tag consistent with semantic in pages
Change title page tag for a <h1> from <h2>
2025-07-11 05:17:06 +02:00

10 lines
311 B
HTML

{% extends 'index.html' %}
{% block page_title %}{{ super() }} — {{ category|striptags }}{% endblock page_title %}
{% block title %}
<h1>{{ category }}</h1>
{% if CATEGORY_DESCRIPTIONS[category|string] %}
<p class="subtitle">
{{ CATEGORY_DESCRIPTIONS[category|string] }}
</p>
{% endif %}
{% endblock title %}