{# _template/archive.html ~~~~~~~~~~~~~~~~~~~~~~~ Template for post lists. #} {%- extends "page.html" %} {% block body %} {% set fa = ablog.fontawesome %} {% for archive in catalog %} {% if archive|length %}

{% if atom_feed and fa %} {% endif %} {{ header }} {% if archive.href %} {{ archive }} {% else %} {{ archive }} {% endif %}

{% for post in archive %}

{{ post.title }}

{{ post.to_html(archive.docname) }}

{{ _("Read more ...") }}


{% endfor %}
{% endif %} {% endfor %} {% endblock %}