Zulma-Theme/templates/section.html

36 lines
1.2 KiB
HTML
Raw Normal View History

2019-10-05 18:04:28 +02:00
{% extends "index.html" %}
{% import "post_macros.html" as post_macros %}
{% import "index_macros.html" as index_macros %}
{% block content %}
<!-- START NAV -->
{% block header %}
{{ super() }}
{% endblock header %}
<!-- END NAV -->
<main>
2019-10-05 22:38:47 +02:00
<!-- START HERO TITLE -->
2019-10-05 22:43:16 +02:00
{% if section.extra.zulma_title %}
2019-10-05 22:38:47 +02:00
{{ index_macros::hero(title=section.extra.zulma_title, primary=true) }}
{% endif %}
<!-- END HERO TITLE !-->
2019-10-05 18:04:28 +02:00
<section class="container">
<div class="columns is-desktop">
<div class="column is-10-desktop is-offset-1-desktop">
2019-10-05 18:17:48 +02:00
<!-- START ARTICLE FEED !-->
2019-10-05 18:04:28 +02:00
{% if paginator %}
2019-10-05 18:17:48 +02:00
{{ index_macros::list_articles(pages=paginator.pages) }}
{% else %}
{{ index_macros::list_articles(pages=section.pages) }}
{% endif %}
<!-- END ARTICLE FEED -->
<!-- START PAGINATION -->
{% if paginator %}
{{ index_macros::paginate(paginator=paginator) }}
{% endif %}
<!-- END PAGINATION -->
2019-10-05 18:04:28 +02:00
</div>
</div>
</section>
</main>
{% endblock content %}