1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-09-25 03:48:24 +02:00
mkdocs-material/material/partials/social.html
2018-06-10 15:21:49 +02:00

9 lines
318 B
HTML

{% if config.extra.social %}
<div class="md-footer-social">
<link rel="stylesheet" href="{{ base_url }}/assets/fonts/font-awesome.css">
{% for social in config.extra.social %}
<a href="{{ social.link }}" class="md-footer-social__link fa fa-{{ social.type }}"></a>
{% endfor %}
</div>
{% endif %}