{% extends "base.html" %} {% block content_title %}{% endblock %} {% block header_extra %} {% if MG_LANG_FILTER_TAGS %} {% endif %} {% if MG_FILTER_TAGS %} {% for filter_tag in MG_FILTER_TAGS %} {% endfor %} {% endif %} {% endblock %} {% block content %}
{% if articles %} {% for article in (articles_page.object_list if articles_page else articles) %} {% if not MG_NO_EXCERPT and loop.index == 1 %} {% include "partials/article-excerpt.html" %} {% else %} {% include "partials/article-short.html" %} {% endif %} {% endfor %} {% if DEFAULT_PAGINATION and articles_paginator.num_pages > 1 %} {% endif %} {% endif %}
{% endblock %}