blob: 9cc8e31cb2bed6fd1e6b597f895ba431e69409ef (
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 }}" {{ if .blank }}target="_blank"{{ end }}><small>{{ .text }}</small></a>
</div>
{{ end }}
</div>
|