This repository has been archived on 2025-10-03. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
talking-drupal-tailwindcss/templates/includes/episode-list.html.twig
2022-06-08 10:41:02 +01:00

9 lines
249 B
Twig

<div class="space-y-6 sm:space-y-10">
{% for episode in episodes %}
{% include "includes/episode-teaser.html.twig" with { episode } only %}
{% endfor %}
<div>
{% include "includes/episode-list-pagination.html.twig" %}
</div>
</div>