pyro/templates/category.html
Irrlicht d741f906dc [style] Improve style
- Remove background for article title and increase font size
- Improve colors
- Article: decrease font size and remove bold from list of tags
- Add test in case CATEGORY_DESCRIPTIONS isn't defined
2025-10-07 04:43:45 +02:00

10 lines
337 B
HTML

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