2023-04-02 16:42:13 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<div class="container mx-auto px-4 max-w-3xl py-8 space-y-4">
|
|
|
|
|
2023-04-03 02:49:17 +02:00
|
|
|
{% if section.ancestors | length > 0 %}
|
|
|
|
{{ prev_macros::section_back_link(section=section) }}
|
2023-04-02 16:42:13 +02:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if section.extra.section_path -%}
|
2023-04-03 02:49:17 +02:00
|
|
|
{% set section = get_section(path=section.extra.section_path) %}
|
2023-04-02 16:42:13 +02:00
|
|
|
{% endif -%}
|
|
|
|
<h1 class="title text-peach text-3xl">
|
|
|
|
{{ section.title }}
|
|
|
|
</h1>
|
|
|
|
|
|
|
|
<main>
|
|
|
|
{%- if paginator %}
|
|
|
|
{%- set show_pages = paginator.pages -%}
|
|
|
|
{% else %}
|
|
|
|
{%- set show_pages = section.pages -%}
|
|
|
|
{% endif -%}
|
|
|
|
|
|
|
|
{{ post_macros::list_posts(pages=show_pages) }}
|
|
|
|
</main>
|
|
|
|
{% if paginator %}
|
|
|
|
<ul class="pagination">
|
|
|
|
{% if paginator.previous %}
|
|
|
|
<span class="page-item page-prev">
|
|
|
|
<a href={{ paginator.previous }} class="page-link" aria-label="Previous"><span aria-hidden="true">← Prev</span></a>
|
|
|
|
</span>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if paginator.next %}
|
|
|
|
<span class="page-item page-next">
|
|
|
|
<a href={{ paginator.next }} class="page-link" aria-label="Next"><span aria-hidden="true">Next →</span></a>
|
|
|
|
</span>
|
|
|
|
{% endif %}
|
|
|
|
</ul>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
{% endblock content %}
|