itsdrike.com/layouts/partials/footer.html

22 lines
721 B
HTML
Raw Normal View History

2021-08-25 11:07:58 +00:00
<footer class="p-5">
2021-08-26 00:06:40 +00:00
<div class="container">
<div class="row">
2022-04-08 18:26:59 +00:00
<div class="col-sm-2">
2021-08-26 00:06:40 +00:00
<p>&copy; {{ now.Year }} <a href='{{ ref . "contact" }}'>{{ .Site.Title }}</a>.</p>
<p></p>
</div>
2022-04-08 18:26:59 +00:00
<div class="col-sm-7">
<a href='{{ ref . "privacy-policy" }}'>Privacy policy</a>
</div>
2021-08-26 00:06:40 +00:00
<div class="col-sm-3">
<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>
2021-08-25 11:07:58 +00:00
</div>
2021-08-26 00:06:40 +00:00
</div>
2021-08-25 11:07:58 +00:00
</footer>