- 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
10 lines
337 B
HTML
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 %}
|