search.twig 495 B

12345678910111213
  1. {# see `archive.twig` for an alternative strategy of extending templates #}
  2. {% extends "base.twig" %}
  3. {% block content %}
  4. {# see `base.twig:27` for where this block's content will be inserted #}
  5. <div class="content-wrapper">
  6. {% for post in posts %}
  7. {% include ['tease-'~post.post_type~'.twig', 'tease.twig'] %}
  8. {% endfor %}
  9. {% include 'partial/pagination.twig' with { pagination: posts.pagination({show_all: false, mid_size: 3, end_size: 2}) } %}
  10. </div>
  11. {% endblock %}