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

25 lines
896 B
HTML
Raw Permalink Normal View History

2019-03-16 15:18:41 +00:00
<footer class="p-5 {{ if eq .IsHome false }}mt-5{{ end }}">
2017-11-11 22:00:53 +00:00
<div class="container">
<div class="row">
<div class="col-sm-4">
<p>&copy; {{ now.Year }} <a href='{{ ref . "contact" }}'>{{ .Site.Title }}</a>.</p>
2017-11-11 22:00:53 +00:00
<p></p>
</div>
<div class="col-sm-4 text-center px-5">
<p>
2022-01-03 14:12:38 +00:00
<a id="scroll-top" class="float-left" href="#">To top</a>
<a id="scroll-elevator" class="float-right" href="#">To top, in <i>style</i></a>
</p>
</div>
<div class="col-sm-4">
2017-11-11 22:00:53 +00:00
<h3 class="text-right">
{{ range .Site.Data.social.notable_accounts }}
2020-09-05 22:52:42 +01:00
{{ $account := index $.Site.Data.social.accounts . }}
2021-12-26 22:37:57 +00:00
<a href="{{ $account.link }}" title="{{ $account.name }}"><i class="mx-1 {{ $account.icon }}" aria-hidden="true"></i></a>
2017-11-11 22:00:53 +00:00
{{ end }}
</h3>
</div>
</div>
</div>
</footer>