home.html.twig 343 B

12345678910111213
  1. {% extends 'partials/base.html.twig' %}
  2. {% set bodyclass = "home" %}
  3. {% block content %}
  4. <div class="grid">
  5. {% for child in page.collection %}
  6. {% if child.header.home == true %}
  7. {% include 'partials/projet-block.html.twig' with {'page':child,'display':'img'} %}
  8. {% endif %}
  9. {% endfor %}
  10. </div>
  11. {% endblock %}