{% extends "base.html" %} {% block main_content %} {# Throw an error if the section is not flagged as a series. #} {# This page would be displayed properly but it would become impossible for the series' child pages to reference their series. #} {%- if "series" not in section.extra or not section.extra.series -%} {{ throw(message="Section is not flagged as a series. Set `section.extra.series` to `true` if you want to use `series.html` template.") }} {%- endif -%}
{%- if section.extra.header %} {%- include "partials/home_banner.html" -%} {% endif -%} {{ macros_page_header::page_header(title=section.title) }}
{{ section.content | safe }}
{%- if paginator %} {%- set pages = paginator.pages -%} {% else %} {%- set pages = section.pages -%} {% endif -%} {% set max_posts = section.extra.max_posts | default(value=999999) %} {{ macros_list_posts::list_posts(posts=pages, max=max_posts, metadata="indexes", language_strings=language_strings, section_path=section.path, paginator=paginator | default(value="")) }}
{% if paginator %} {%- include "partials/paginate.html" -%} {% endif %}
{%- include "partials/extra_features.html" -%} {% endblock main_content %}