social.html 891 B

12345678910111213141516171819202122
  1. <ul class="social-media-list">
  2. {%- for entry in site.minima.social_links -%}
  3. <li>
  4. <a rel="me" href="{{ entry.url }}" target="_blank" title="{{ entry.title }}">
  5. <span class="grey fa-brands fa-{{ entry.icon }} fa-lg"></span>
  6. </a>
  7. </li>
  8. {%- endfor -%}
  9. {% unless site.minima.hide_site_feed_link %}
  10. <li>
  11. <a href="{{ site.feed.path | default: 'feed.xml' | absolute_url }}" target="_blank" title="Subscribe to syndication feed">
  12. <svg class="svg-icon grey" viewbox="0 0 16 16">
  13. <path d="M12.8 16C12.8 8.978 7.022 3.2 0 3.2V0c8.777 0 16 7.223 16 16h-3.2zM2.194
  14. 11.61c1.21 0 2.195.985 2.195 2.196 0 1.21-.99 2.194-2.2 2.194C.98 16 0 15.017 0
  15. 13.806c0-1.21.983-2.195 2.194-2.195zM10.606
  16. 16h-3.11c0-4.113-3.383-7.497-7.496-7.497v-3.11c5.818 0 10.606 4.79 10.606 10.607z"
  17. />
  18. </svg>
  19. </a>
  20. </li>
  21. {%- endunless %}
  22. </ul>