deblan.io-murph/templates/page/posts/default.html.twig

29 lines
922 B
Twig
Raw Normal View History

2021-11-23 22:48:55 +01:00
{% extends "page/titled/default.html.twig" %}
2021-11-23 00:14:59 +01:00
{% block body %}
{% for post in pager %}
{% if not loop.first %}
<hr class="col-12">
{% endif %}
2021-11-23 22:48:55 +01:00
{{ include('page/post/_post.html.twig', {post: post}) }}
{% endfor %}
{% if pager.getPaginationData.pageCount > 1 %}
<div class="col-12">
<div class="body">
<div class="pager align-right">
{% block pager %}
2021-03-29 22:45:00 +02:00
{{ include('module/_pager.html.twig', {
route: _node.routeName,
2021-11-23 22:48:55 +01:00
routeParams: {_domain: _domain},
pages: pager.paginationData.endPage,
currentPage: pager.paginationData.current
}) }}
{% endblock %}
</div>
</div>
</div>
{% endif %}
{% endblock %}