{% extends "base.html" %} {% block styles %} {{ super() }} {% endblock %} {% block title %}{{ SITENAME }}{% endblock %} {% block bannertext %}

{{ SITENAME }}

{% endblock %} {% if CARD_SIZE is not defined %} {% set CARD_SIZE = "s12 m12 l12" %} {% endif %} {% if HIDE_AUTHOR_AVATAR is not defined %} {% set HIDE_AUTHOR_AVATAR = False %} {% endif %} {% if HIDE_AUTHOR_NAME is not defined %} {% set HIDE_AUTHOR_NAME = False %} {% endif %} {% if HIDE_CATEGORY is not defined %} {% set HIDE_CATEGORY = False %} {% endif %} {% block content %}
{% if BREADCRUMB_ELEMENTS is not defined %} {% set BREADCRUMB_ELEMENTS = [("Categories", "categories/index.html")] %} {% endif %} {% include "includes/breadcrumbs.html" %} {% for article in (articles_page.object_list if articles_page else articles) %}
{% if not HIDE_AUTHOR_AVATAR %} {% endif %}

{{ article.title }}

{% if article.description %} {{ article.description }} {% else %} {{ article.summary }} {% endif %}
{% endfor %}
{% endblock %}