conference-site/themes/pelican-blue/templates/partners.html
Emiliano Vavassori 6aecd1c50b
All checks were successful
build and deploy / build+deploy (push) Successful in 12s
Aggiustamenti a licenze, partners, social.
2024-03-14 00:59:16 +01:00

12 lines
440 B
HTML

<div id="partners">
{% if PARTNERS %}
<ul>
{% for link, alt, image, width in PARTNERS %}
<li><a href="{{ link }}" title="{{ alt }}" target="_new"><img src="{{ image }}" alt="{{ alt }}" width="{{ width }}" /></a></li>
{% endfor %}
</ul>
{% else %}
<p><a id="link_partners" class="nav__link" href="/partners" title="Partners e Sponsor">Partner e Sponsor</a></p>
{% endif %}
</div>