conference-site/themes/pelican-blue/templates/social.html

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>