73 lines
1.7 KiB
Twig
73 lines
1.7 KiB
Twig
{% extends "base.twig" %}
|
|
|
|
{% block content %}
|
|
{% include 'components/title_page.twig' %}
|
|
|
|
<section class="row">
|
|
|
|
<aside class="sidebar_left col-12 col-md-12 col-lg-4">
|
|
|
|
<div class="wrapper">
|
|
{% include '/components/sider_left.twig' with { name__template : 'association' } %}
|
|
</div>
|
|
|
|
{% include '/components/buttons/bouton_asso.html.twig' %}
|
|
</aside>
|
|
<div class="paralax" data-rellax-speed="-10">
|
|
<img src="{{theme.link}}/dist/assets/images/objet_1.svg" alt="objet 1">
|
|
</div>
|
|
|
|
<section class="wrapper__content col-12 col-md-12 col-lg-8">
|
|
|
|
<article class="wrap__content __asso">
|
|
<header>
|
|
<h3 class="titre_1">{{ post.meta('titre_asso') }}</h3>
|
|
</header>
|
|
|
|
<section class="__body">
|
|
{{ post.meta('paragraphe_asso') }}
|
|
</section>
|
|
</article>
|
|
|
|
<article class="wrap__content engagement">
|
|
<header>
|
|
<h3 class="titre_1">{{ post.meta('titre_engage') }}</h3>
|
|
</header>
|
|
|
|
<section class="__body">
|
|
<figure class="__image">
|
|
<img src="{{ Image(post.meta('image_engagement')).src }}" alt="{{ Image(post.meta('image_engagement')).alt }}"/>
|
|
</figure>
|
|
|
|
<section class="tableau_engagements card-columns ">
|
|
{% for item in post.meta('type_engagement') %}
|
|
<article class="engagement card">
|
|
<header>
|
|
<h4>{{item.titre_engagement}}</h4>
|
|
</header>
|
|
<div class="__content">
|
|
{{item.paragraphe_engagement}}
|
|
</div>
|
|
</article>
|
|
{% endfor %}
|
|
</section>
|
|
|
|
<section class="wrap__content vie-asso">
|
|
<div class="__header">
|
|
<h3 class="titre_1">{{ post.meta('titre_vieasso') }}</h3>
|
|
</div>
|
|
<div class="__body">
|
|
{{ post.meta('paragraphe_vieasso') }}
|
|
</div>
|
|
</section>
|
|
|
|
</section>
|
|
|
|
</article>
|
|
|
|
</section>
|
|
|
|
</section>
|
|
|
|
{% endblock %}
|