home.html.twig 256 B

123456789
  1. {% extends 'partials/base.html.twig' %}
  2. {% block content %}
  3. {% for child in page.collection %}
  4. <section class="projet columns large-4">
  5. {% include 'partials/projet.html.twig' with {'page':child} %}
  6. </section>
  7. {% endfor %}
  8. {% endblock %}