Files
dev-epau.archi.fr/user/themes/epau-antimatter/templates/modular/programmes.html.twig
T

53 lines
1.6 KiB
Twig

<!-- <div class="background">
<img src="{/pages/02._programmes/10361_web_01.jpg}">
</div>
-->
<div id="background">
<figure class="item-1">
<img src="/user/themes/epau-antimatter/images/14360_default_big.jpg" class="background__img" alt="Image 1">
</figure>
<figure class="item-2">
<img src="/user/themes/epau-antimatter/images/hyperliens_marseille_.PNG" class="background__img" alt="Image 2">
</figure>
<figure class="item-3">
<img src="/user/themes/epau-antimatter/images/10361_web_01.jpg" class="background__img" alt="Image 3">
</figure>
<figure class="item-4">
<img src="/user/themes/epau-antimatter/images/jeux-olypiques-paris-2024-village-athle-lot-e2.jpg" class="background__img" alt="Image 4">
</figure>
</div>
<div class="programmes{{ page.header.class}}">
<!-- <div class="parallax-window" data-parallax="scroll" data-image-src="{/pages/02._programmes/10361_web_01.jpg}"></div> -->
{{ content|raw }}
{#
<div class="paralax-bg">
</div>
#}
{% for programme in page.header.programmes %}
<div class="programme">
<a href="{{programme.site}}">
{% if programme.logo %}
<img src="{{page.media[programme.logo].url|e }}" alt="logo du programme {{programme.nom_du_programme}}" />
{% endif %}
{% if programme.nom_du_programme %}
<h4>{{ programme.nom_du_programme }}</h4>
{% endif %}
{% if programme.texte_de_presentation %}
<p>{{ programme.texte_de_presentation|markdown }}</p>
{% endif %}
</a>
</div>
{% endfor %}
</div>