aboutsummaryrefslogtreecommitdiff
path: root/layouts/partials/footer.html
blob: b027256e95bbd61836237ecf095a0a019b1eb03a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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>