aboutsummaryrefslogtreecommitdiff
path: root/layouts/partials/footer.html
blob: 1574aac4979f3870263c9638d859d49297f14d09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<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 }}
        <div class="container text-center">
            <a href="{{ .url | absURL }}" title="{{ .text }}"><small>{{ .text }}</small></a>
        </div>
    {{ end }}
</div>