SiteWebAstrolabe/src/_includes/partials/components/member-list.njk

25 lines
1006 B
Plaintext
Raw Normal View History

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">
<a href="{{ item.data.url }}/" class="">
<img src=" {{ item.data.profile }}" alt="photo de {{ item.data.name }}">
<span class="member-name btn btn-primary">{{ item.data.name }}</span>
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 dun projet entrepreneurial en numérique et nouvelles technologies ?</p>
<a role="button" href="/nous-rejoindre/" class="btn btn-secondary">Rejoignez-nous</a>
2020-07-07 00:09:37 +02:00
</li>
</ol>
{% endif %}
</div>
</section>