mirror of
https://github.com/ItsDrike/itsdrike.com.git
synced 2025-06-29 16:10:43 +00:00
Add simple footer
This commit is contained in:
parent
230834fd9f
commit
5806b8fc7b
3 changed files with 34 additions and 0 deletions
20
layouts/partials/footer.html
Normal file
20
layouts/partials/footer.html
Normal file
|
@ -0,0 +1,20 @@
|
|||
<footer class="p-5">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-sm-9">
|
||||
<p>© {{ now.Year }} <a href='{{ ref . "contact" }}'>{{ .Site.Title }}</a>.</p>
|
||||
<p></p>
|
||||
</div>
|
||||
<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>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
Loading…
Add table
Add a link
Reference in a new issue