You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
560 B
18 lines
560 B
{# see `templates/archive.twig` for an alternative strategy of extending templates #}
|
|
{% extends 'layouts/base.twig' %}
|
|
|
|
{% block content %}
|
|
<div class="content-wrapper">
|
|
{% 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
|
|
})
|
|
} %}
|
|
</div>
|
|
{% endblock %}
|
|
|