mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-11-13 18:40:54 +01:00
15 lines
483 B
HTML
15 lines
483 B
HTML
{#-
|
|
This file was automatically generated - do not edit
|
|
-#}
|
|
{% if config.extra.social %}
|
|
<div class="md-footer-social">
|
|
{% for social in config.extra.social %}
|
|
{% set _,rest = social.link.split("//") %}
|
|
{% set domain = rest.split("/")[0] %}
|
|
<a href="{{ social.link }}" target="_blank" rel="noopener" title="{{ domain }}" class="md-footer-social__link">
|
|
{% include ".icons/" ~ social.icon ~ ".svg" %}
|
|
</a>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|