agenda.twig 201 B

123456789101112
  1. {% extends "base.twig" %}
  2. {% block content %}
  3. <section>
  4. <div>
  5. {% for item in posts %}
  6. {% include 'components/thumbnails/thumbnails.twig' %}
  7. {% endfor %}
  8. </div>
  9. </section>
  10. {% endblock %}