| 12345678910111213 |
- {% extends 'partials/base.html.twig' %}
- {% set bodyclass = "home" %}
- {% block content %}
- <div class="grid">
- {% for child in page.collection %}
- {% if child.header.home == true %}
- {% include 'partials/projet-block.html.twig' with {'page':child,'display':'img'} %}
- {% endif %}
- {% endfor %}
- </div>
- {% endblock %}
|