1
0
Fork 0

Move website source to /source

This commit is contained in:
Owen Ryan 2023-06-17 15:05:41 -04:00
parent 530fc76ede
commit 6981ccad43
81 changed files with 8 additions and 34 deletions

View file

@ -0,0 +1,12 @@
{% comment %}
Social media icons are dynamically rendered based on the contents of _data/social-media.yml
{% endcomment %}
<div class="row justify-content-center">
{%- for icon in site.data.social-media.links -%}
<a class="col social-button" href="{{ icon.url }}" target="_blank" rel="noopener noreferrer">
<i class="{{ icon.style.fa-classes | join: " " }} p-3" title="{{ icon.name }}"
style="color:#{{ icon.style.color-primary }};"></i>
</a>
{%- endfor -%}
</div>