git push wip

This commit is contained in:
2023-03-27 21:49:34 -05:00
commit 630fd021b3
49 changed files with 1146 additions and 0 deletions

View File

@ -0,0 +1,15 @@
<div class="socialNavbar">
<ul>
{{ range sort .Site.Params.social "key"}}
<li>
{{ if isset . "icon" }}
<a href="{{ .url | safeURL }}" aria-hidden="true" title="{{ .name }}">
<i class="{{ .icon }}"></i>
</a>
{{ else }}
<a href="{{ .url | safeURL }}">{{ .name }}</a>
{{ end }}
</li>
{{ end }}
</ul>
</div>