home.html.twig 489 B

123456789101112131415161718
  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. <nav class="categories">
  12. {% include 'partials/tagslist.html.twig' with {'base_url':"/", 'taxonomy':'tag', 'display':'inline'} %}
  13. </nav>
  14. {% endblock %}