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.
15 lines
389 B
15 lines
389 B
{% extends 'layouts/base.twig' %}
|
|
|
|
{% block content %}
|
|
{% 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 %}
|
|
|