{% extends "base.html" %} {% block title %}{{ SHORT_SITENAME }} - {{ category|striptags }}{% endblock %} {% block header %} {{ LONG_SITENAME }} {%endblock%} {% block menuheader %} {% import "_macros/menu.html" as macros %} {{ macros.render_menu(category.slug) }} {% endblock menuheader %} {% block content %} {% if category == "faq" %} {% for article in articles|sort(attribute='published_at')|reverse %} {% if article.category == "faq" %}
{{ article.content }}
{% endif %} {% endfor %} {% endif %} {% endblock %}