{% extends "base.html" %} {% block content %} {% if archive_full_width %} {# Close container for full-width mode #} {% endif %}

Comic Archive

Browse all {% set total = namespace(count=0) %}{% for section_title, section_comics in sections %}{% set total.count = total.count + section_comics|length %}{% endfor %}{{ total.count }} comics

{% for section_title, section_comics in sections %} {% if section_title and sections_enabled %}

{{ section_title }}

{% endif %}
{% for comic in section_comics %} {% endfor %}
{% endfor %}
{% if archive_full_width %}
{# Reopen container for footer #} {% endif %} {% endblock %}