{% extends "base.html" %} {% block content %}

{{ section.title }}

{{ section.description }}

Filter by tag
From newest to oldest ↓
{% for page in section.pages %}

{{ page.title }}

{%- if page.draft %} Drafted {%- endif %} {%- if page.extra.archive %} Archived {%- endif %} {%- if page.description %}

{{ page.description }}

{%- endif %} {%- if page.date %} {%- if page.authors %} Author: {{ page.authors[0] }} {%- endif %} {%- if page.taxonomies %} {%- for name, taxon in page.taxonomies %}
    {%-for item in taxon %}
  • {{ item }}
  • {%- endfor %}
{%- endfor %} {%- endif %}
{%- endif %}

{% endfor %}
{% endblock content %}