{% extends "base.html" %} {% block breadcrumbs %} {% if DISPLAY_BREADCRUMBS %} {% endif %} {% endblock %} {% block content %} {% if articles %} {% for article in (articles_page.object_list if articles_page else articles) %} {% set DISPLAY_IMAGE = false %}

{{ article.title }}

{% if article.image %} {% set DISPLAY_IMAGE = true %}
{{ article.title|striptags }}
{% elif CATEGORY_IMAGES and article.category in CATEGORY_IMAGES %} {% set DISPLAY_IMAGE = true %}
{{ article.category|striptags }}
{% else %}
{% endif -%} {{- article.summary -}}
{% if DISPLAY_IMAGE == true %}
{% else %}
{% endif %}

{% if article.readtime_minutes -%} •  ~{{ article.readtime_minutes }} min to read {% elif article.stats -%} •  ~{{ article.stats['read_mins'] }} min to read {%- endif %} {% if DISQUS_SITENAME and DISQUS_DISPLAY_COUNTS %} •  {% endif -%} {% if DISQUS_SITENAME or (PELICAN_COMMENT_SYSTEM and PELICAN_COMMENT_SYSTEM_DISPLAY_COUNTS != false and article.comments_count > 0) %} •  {% include 'includes/comment_count.html' %} {% endif -%} {# only display the 'read more' link if there is more to the article #} {% if article.has_summary != false %} •  read more   {% endif %}


{% endfor %} {% endif %} {% include 'includes/pagination.html' %} {% endblock content %}