19 lines
489 B
Twig
19 lines
489 B
Twig
{% 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>
|
|
|
|
<nav class="categories">
|
|
{% include 'partials/tagslist.html.twig' with {'base_url':"/", 'taxonomy':'tag', 'display':'inline'} %}
|
|
</nav>
|
|
|
|
{% endblock %}
|