aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/docs/src/templates/partials/social.html
blob: e59fdae6e7793ebad96ff5853a7ab470e03818e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{#-
  This file was automatically generated - do not edit
-#}
<div class="md-social">
  {% for social in config.extra.social %}
    {% set rel = "noopener" %}
    {% if "mastodon" in social.icon %}
      {% set rel = rel ~ " me" %}
    {% endif %}
    {% set title = social.name %}
    {% if not title and "//" in social.link %}
      {% set _, url = social.link.split("//") %}
      {% set title  = url.split("/")[0] %}
    {% endif %}
    <a href="{{ social.link }}" target="_blank" rel="{{ rel }}" title="{{ title | e }}" class="md-social__link">
      {% include ".icons/" ~ social.icon ~ ".svg" %}
    </a>
  {% endfor %}
</div>