{% extends "base.html" %} {% block htmltitle %} {{ category.name|title }} {% endblock %} {% block metadata %} {{ page.metatags }} {% endblock %} {% block content %} {% include 'extras/header.html' with instance=category %} {% if category.page.content %}
{{ category.page.content }}
{% endif %} {% if not category.page.hide_list %}
{% for article in articles|sort(attribute="title") %}
{% if article.image %}
{% endif %}

{{ article.title }}

{{ article.summary|striptags|e }}

{% endfor %}
{% endif %} {% endblock %}