aboutsummaryrefslogtreecommitdiff
path: root/layouts/partials/footer.html
diff options
context:
space:
mode:
authorOlivier Roques <ojroques@users.noreply.github.com>2021-04-29 20:53:19 +0200
committerGitHub <noreply@github.com>2021-04-29 20:53:19 +0200
commite6e7d32b863e7f4a8aaaf897ee1923693f0b24dc (patch)
treec22fd4c2f4e90afbe99373510ffc82fc3f7ccf09 /layouts/partials/footer.html
parent9cf4599276a1dcdeac9ff81014a140ca4fdfb93c (diff)
parent60feb8ec557a8430c93f5ded388545b76e86c82e (diff)
Merge pull request #18 from aniolm9/footer-social-icons
New feature: Add social icons in footer
Diffstat (limited to 'layouts/partials/footer.html')
-rw-r--r--layouts/partials/footer.html7
1 files changed, 6 insertions, 1 deletions
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index 192130b..1574aac 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -1,6 +1,11 @@
<div id="footer" class="mb-5">
+ <hr>
+ <div class="container text-center">
+ {{ range $item := .Site.Params.socialIcons }}
+ <a href="{{ $item.url }}" class="{{ $item.icon }} fa-1x" title="{{ $item.title }}"></a>
+ {{ end }}
+ </div>
{{ with .Site.Params.footer }}
- <hr>
<div class="container text-center">
<a href="{{ .url | absURL }}" title="{{ .text }}"><small>{{ .text }}</small></a>
</div>