1
Fork 0
theorangeone.net-legacy/layouts/partials/footer.html

20 lines
671 B
HTML

<footer class="bg-light p-5 {{ if eq .IsHome false }}mt-5{{ end }}">
<div class="container">
<div class="row">
<div class="col-sm-6">
<p>
&copy; {{ now.Year }} <a href='{{ absURL "" }}'>{{ .Site.Title }}</a>.
</p>
<p></p>
</div>
<div class="col-sm-6">
<h3 class="text-right">
{{ range .Site.Data.social.footer_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>
{{ end }}
</h3>
</div>
</div>
</div>
</footer>