agenda.twig 215 B

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