Files
pelican-latex/templates/includes/social_links.html
T
haemka 996f6efb8f Refine social link icon spacing/sizing per feedback
Sidebar: double the standard 3rem section gap above the icon row
(6rem), horizontally centered instead of left-aligned.
About-me page: new .social-links--large variant via a
social_links_variant template var - icons at 5rem (was 1.25rem),
centered, 3rem gap from the preceding text (standard section gap,
distinct from the normal 1rem paragraph gap), wider inter-icon gap
to match the larger size.
2026-08-14 16:53:30 +00:00

8 lines
320 B
HTML

{% if SOCIAL %}
<ul class="social-links{% if social_links_variant %} social-links--{{ social_links_variant }}{% endif %}">
{% for name, url, icon in SOCIAL %}
<li><a href="{{ url }}" rel="me" aria-label="{{ name }}" title="{{ name }}">{% include "icons/" ~ icon ~ ".svg" %}</a></li>
{% endfor %}
</ul>
{% endif %}