1
0
Fork 0

Initial commit

This commit is contained in:
Owen Ryan 2023-05-15 23:59:18 -04:00
commit 530fc76ede
84 changed files with 60305 additions and 0 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>