You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
651 B
HTML

2 years ago
{% extends "base.html" %}
{% block main_content %}
{% if section.extra.section_path -%}
{% set section = get_section(path=section.extra.section_path) %}
{% endif -%}
{{ macros_page_header::page_header(title=section.title) }}
2 years ago
<main>
{%- if paginator %}
{%- set show_pages = paginator.pages -%}
{% else %}
{%- set show_pages = section.pages -%}
{% endif -%}
{{ macros_cards_pages::cards_pages(pages=show_pages) }}
2 years ago
</main>
{% if paginator %}
{{ macros_paginate::paginate(language_strings=language_strings) }}
2 years ago
{% endif %}
{% endblock main_content %}