2020-07-07 00:09:37 +02:00
|
|
|
|
<section class="[ member-list ]">
|
|
|
|
|
<div class="[ wrapper ]">
|
|
|
|
|
{% if teamListItems.length %}
|
|
|
|
|
<ol class="[ member-list__items ]" reversed>
|
|
|
|
|
{% for item in teamListItems %}
|
|
|
|
|
<li class="member-list__item">
|
2021-11-09 19:24:23 +01:00
|
|
|
|
<img src=" {{ item.data.profile }}" alt="photo de {{ item.data.name }}">
|
2020-07-14 20:10:42 +02:00
|
|
|
|
<a role="button" href="{{ item.data.url }}" class="btn btn-primary">{{ item.data.name }}
|
|
|
|
|
<svg width="18" height="14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17.602 5.823L12.05.376a1.357 1.357 0 00-1.875 0 1.295 1.295 0 000 1.84l3.278 3.235H1.326C.587 5.451 0 6.027 0 6.752s.587 1.302 1.326 1.302h12.127l-3.278 3.215a1.295 1.295 0 000 1.84 1.349 1.349 0 001.894 0l5.533-5.427c.246-.242.398-.576.398-.93 0-.353-.133-.687-.398-.93z" fill="#111"></path></svg>
|
2020-07-07 00:09:37 +02:00
|
|
|
|
</a>
|
2020-07-14 20:10:42 +02:00
|
|
|
|
<p>{{ item.data.position }}</p>
|
|
|
|
|
{% if item.data.positionInternal %}
|
|
|
|
|
<p>{{ item.data.positionInternal }}</p>
|
|
|
|
|
{% endif %}
|
2020-07-07 00:09:37 +02:00
|
|
|
|
</li>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
<li class="member-list__item info">
|
|
|
|
|
<p>Vous êtes porteur d’un projet entrepreneurial en numérique et nouvelles technologies ?</p>
|
2020-07-15 00:14:56 +02:00
|
|
|
|
<a role="button" href="/nous-rejoindre" class="btn btn-secondary">Rejoignez-nous
|
|
|
|
|
<svg width="18" height="14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17.602 5.823L12.05.376a1.357 1.357 0 00-1.875 0 1.295 1.295 0 000 1.84l3.278 3.235H1.326C.587 5.451 0 6.027 0 6.752s.587 1.302 1.326 1.302h12.127l-3.278 3.215a1.295 1.295 0 000 1.84 1.349 1.349 0 001.894 0l5.533-5.427c.246-.242.398-.576.398-.93 0-.353-.133-.687-.398-.93z" fill="#fff"/></svg>
|
2020-07-07 00:09:37 +02:00
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
|
</ol>
|
|
|
|
|
{% endif %}
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|