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

17 lines
530 B
Plaintext
Raw Normal View History

2020-07-16 00:11:48 +02:00
<section class="[ sponsor ]">
<div class="[ wrapper ]">
2020-07-16 13:12:24 +02:00
<p class="[ sponsor__heading ]">{{ sponsorsHeading }}</p>
{% if sponsorsListItems.length %}
2020-07-16 00:11:48 +02:00
<ol class="[ sponsor__list ]">
2020-07-16 13:12:24 +02:00
{% for item in sponsorsListItems %}
2020-07-16 00:11:48 +02:00
<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>