1
Fork 0
theorangeone.net-legacy/layouts/partials/footer.html
Jake Howard ef86710c08
Add atom feed
Because RSS is _soo_ 2017
2018-05-10 13:49:32 +01:00

18 lines
613 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>{{ partial "copyright.html" . }}</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>