Files
cnt-sindikatua/views/templates/index.twig
2025-07-14 07:33:32 +00:00

17 lines
412 B
Twig

{% extends 'layouts/base.twig' %}
{% block content %}
<h2>{{ foo }}</h2>
{% for post in posts %}
{% include ['partials/tease-' ~ post.type ~ '.twig', 'partials/tease.twig'] %}
{% endfor %}
{% include 'partials/pagination.twig' with {
pagination: posts.pagination({
show_all: false,
mid_size: 3,
end_size: 2
})
} %}
{% endblock %}