conference-site/themes/pelican-blue/templates/social.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

17 lines
631 B
HTML

<div class="social">
{% if SOCIAL %}
&nbsp;
{% for name, link in SOCIAL %}
<a href="{{ link }}" target="_blank"><i class="{{ name }}"></i></a>&nbsp;
{% endfor %}
{% endif %}
{% if FEED_ALL_ATOM %}
<a href="{{ SITEURL }}/{{ FEED_ALL_ATOM }}" rel="alternate">
<img src="{{ SITEURL }}/theme/images/icons/rss.png"></a>
{% endif %}
{% if FEED_ALL_RSS %}
<a href="{{ SITEURL }}/{{ FEED_ALL_RSS }}" rel="alternate">
<img src="{{ SITEURL }}/theme/images/icons/rss.png"></a>
{% endif %}
</div>