{% extends "cjkcms/pages/web_page.html" %} {% load wagtailcore_tags wagtailimages_tags cjkcms_tags %} {% block index_filters %}{% endblock %} {% block index_content %} {% if page.index_show_subpages %}
{% if page.index_classifiers.exists %}
{% endif %} {% for article in index_paginated %}
{% if self.show_images %} {% 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 "cjkcms/includes/classifier_nav.html" with navclass="nav-pills flex-column" %}
{% endif %} {% include "cjkcms/includes/pagination.html" with items=index_paginated %}
{% endif %} {% endblock %}