|
|
@ -20,7 +20,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
{%- if generate_feed and config.extra.feed_icon and feed_url -%}
|
|
|
|
{%- if generate_feed and config.extra.feed_icon and feed_url -%}
|
|
|
|
<li>
|
|
|
|
<li>
|
|
|
|
<a class="nav-links no-hover-padding social" rel="{{ rel_attributes }}" {{ blank_target }} href={{ get_url(path=feed_url, lang=lang, trailing_slash=false) | safe }}>
|
|
|
|
<a class="nav-links no-hover-padding social" rel="{{ rel_attributes }}" {{ blank_target }} href="{{ get_url(path=feed_url, lang=lang, trailing_slash=false) | safe }}">
|
|
|
|
<img alt="feed" title="feed" src="{{ get_url(path='/social_icons/rss.svg') }}">
|
|
|
|
<img alt="feed" title="feed" src="{{ get_url(path='/social_icons/rss.svg') }}">
|
|
|
|
</a>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
</li>
|
|
|
@ -56,8 +56,8 @@
|
|
|
|
{%- if config.extra.socials %}
|
|
|
|
{%- if config.extra.socials %}
|
|
|
|
{% for social in config.extra.socials %}
|
|
|
|
{% for social in config.extra.socials %}
|
|
|
|
<li>
|
|
|
|
<li>
|
|
|
|
<a class="nav-links no-hover-padding social" rel="{{ rel_attributes }} me" {{ blank_target }} href={{ social.url | safe }}>
|
|
|
|
<a class="nav-links no-hover-padding social" rel="{{ rel_attributes }} me" {{ blank_target }} href="{{ social.url | safe }}">
|
|
|
|
<img alt={{ social.name }} title={{ social.name }} src="{{ get_url(path='social_icons/' ~ social.icon ~ '.svg') }}">
|
|
|
|
<img alt="{{ social.name }}" title="{{ social.name }}" src="{{ get_url(path='social_icons/' ~ social.icon ~ '.svg') }}">
|
|
|
|
</a>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|