diff options
Diffstat (limited to 'themes/researcher/layouts/partials/footer.html')
-rw-r--r-- | themes/researcher/layouts/partials/footer.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/themes/researcher/layouts/partials/footer.html b/themes/researcher/layouts/partials/footer.html new file mode 100644 index 0000000..b027256 --- /dev/null +++ b/themes/researcher/layouts/partials/footer.html @@ -0,0 +1,15 @@ +<div id="footer" class="mb-5"> + <hr> + {{ if .Site.Params.socialIcons }} + <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> + {{ end }} + {{ with .Site.Params.footer }} + <div class="container text-center"> + <a href="{{ .url | absURL }}" title="{{ .text }}"><small>{{ .text }}</small></a> + </div> + {{ end }} +</div> |