{% extends "index.html" %} {% block extrahead %} {% endblock %} {% block content %}
{{ section.content | safe }}
{%- if not section.extra.disable_listing %}
{% for article in section.pages %} {% set url = article.permalink -%}
{%- if article.extra.thumbnail -%} {%- set thumbnail = article.extra.thumbnail -%} {%- endif %}
{%- set tax = article.taxonomies %} {% if tax.category %}
{{ macros::category(category=tax.category )}}
{% endif %} {% if tax.authors %}
{{ macros::authors(authors=tax.authors )}}
{% endif %} {% if tax.tags %}
{{ macros::tags(tags=tax.tags )}}
{% endif %}
{{ article.date }}

{{ article.title }}

{%- if article.description -%}

{{ article.description }}

{%- endif %}
{% endfor %} {% endif %}
{% endblock content %}