37 lines
1.5 KiB
Twig
37 lines
1.5 KiB
Twig
{% extends 'partials/base.html.twig' %}
|
|
|
|
{% set collection = page.collection() %}
|
|
{% set blog = page.find(header_var('blog_url')|defined(theme_var('blog-page'))) %}
|
|
{% set show_breadcrumbs = header_var('show_breadcrumbs', [page, blog])|defined(true) %}
|
|
{% set show_sidebar = header_var('show_sidebar', [page, blog])|defined(true) %}
|
|
{% set show_pagination = header_var('show_pagination', [page, blog])|defined(true) %}
|
|
|
|
{% block content %}
|
|
{{ page.content }}
|
|
{% if show_breadcrumbs and config.plugins.breadcrumbs.enabled %}
|
|
{% include 'partials/breadcrumbs.html.twig' %}
|
|
{% endif %}
|
|
{% embed 'partials/layout.html.twig' with {blog: page} %}
|
|
{% block item %}
|
|
{% for child in collection %}
|
|
{% if loop.first %}
|
|
<hr class="mb-4 mt-1">
|
|
{% else %}
|
|
<hr class="my-4">
|
|
{% endif %}
|
|
{% include 'partials/blog-list-item.html.twig' with {blog: page, page: child} %}
|
|
{% endfor %}
|
|
|
|
{% if show_pagination and config.plugins.pagination.enabled and collection.params.pagination %}
|
|
<div id="listing-footer">
|
|
{% include 'partials/pagination.html.twig' with {base_url: page.url, pagination: collection.params.pagination} %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block sidebar %}
|
|
{% include 'partials/sidebar.html.twig' %}
|
|
{% endblock %}
|
|
{% endembed %}
|
|
{% endblock %}
|