{% extends "coderedcms/pages/web_page.html" %} {% load wagtailcore_tags wagtailimages_tags coderedcms_tags %} {% block index_filters %}{% endblock %} {% block index_content %} {% if page.index_show_subpages %}
{% for article in index_paginated %} {% if self.show_images %} {% if article.cover_image %} {% image article.specific.cover_image fill-1600x900 format-webp as cover_image %} {{article.title}} {% endif %} {% endif %}

{{article.title}}

{% if self.show_captions and article.specific.caption %}

{{article.specific.caption}}

{% endif %} {% if self.show_meta %}

{{article.specific.seo_published_at}} • {{article.specific.seo_author}}

{% endif %} {% if self.show_preview_text %}

{{article.specific.body_preview}}

{% endif %} {% if not forloop.last %}
{% endif %} {% endfor %}
{% if page.index_classifiers.exists %}
{% include "coderedcms/includes/classifier_nav.html" with navclass="nav-pills flex-column" %}
{% endif %}
{% include "coderedcms/includes/pagination.html" with items=index_paginated %}
{% endif %} {% endblock %}