SiteWebAstrolabe/src/_includes/partials/components/sponsor.njk

17 lines
534 B
Plaintext
Raw Normal View History

2020-07-16 00:11:48 +02:00
<section class="[ sponsor ]">
<div class="[ wrapper ]">
<p class="[ sponsor__heading ]">Ils nous font confiance</p>
{% if customersListItems.length %}
<ol class="[ sponsor__list ]">
{% for item in customersListItems %}
<li class="sponsor__list-item">
<a href="{{ item.data.url }}" title="{{ item.data.name }}" target="_blank">
<img src="{{ item.data.thumbnail }}" alt="logo de {{ item.data.name }}">
</a>
</li>
{% endfor %}
</ol>
{% endif %}
</div>
2020-06-23 13:44:10 +02:00
</section>