index.twig 329 B

1234567891011
  1. {% extends "base.twig" %}
  2. {% block content %}
  3. <h2>{{ foo }}</h2>
  4. <p>{{ qux }}</p>
  5. {% for post in posts %}
  6. {% include ['tease-'~post.post_type~'.twig', 'tease.twig'] %}
  7. {% endfor %}
  8. {% include 'partial/pagination.twig' with { pagination: posts.pagination({show_all: false, mid_size: 3, end_size: 2}) } %}
  9. {% endblock %}