1
Fork 0

Correctly give footer links titles

This commit is contained in:
Jake Howard 2021-12-26 22:37:57 +00:00
parent bbf710c100
commit 622d75b3ad
Signed by: jake
GPG key ID: 57AFB45680EDD477

View file

@ -15,7 +15,7 @@
<h3 class="text-right"> <h3 class="text-right">
{{ range .Site.Data.social.footer_accounts }} {{ range .Site.Data.social.footer_accounts }}
{{ $account := index $.Site.Data.social.accounts . }} {{ $account := index $.Site.Data.social.accounts . }}
<a href="{{ $account.link }}"><i class="mx-1 {{ $account.icon }}" aria-hidden="true" title="{{ $account.name }}"></i></a> <a href="{{ $account.link }}" title="{{ $account.name }}"><i class="mx-1 {{ $account.icon }}" aria-hidden="true"></i></a>
{{ end }} {{ end }}
</h3> </h3>
</div> </div>