social.html 586 B

1234567891011121314151617
  1. {#-
  2. This file was automatically generated - do not edit
  3. -#}
  4. {% if config.extra.social %}
  5. <div class="md-footer-social">
  6. {% for social in config.extra.social %}
  7. {% set title = social.name %}
  8. {% if not title and "//" in social.link %}
  9. {% set _,url = social.link.split("//") %}
  10. {% set title = url.split("/")[0] %}
  11. {% endif %}
  12. <a href="{{ social.link }}" target="_blank" rel="noopener" title="{{ title }}" class="md-footer-social__link">
  13. {% include ".icons/" ~ social.icon ~ ".svg" %}
  14. </a>
  15. {% endfor %}
  16. </div>
  17. {% endif %}