blob: 3a55194397fa89e11e03ac565dee02bc48bebd7f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<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 }}
<div class="container text-center">
{{ with .Site.Params.footer1 }}
<a href="{{ .url | absURL }}" title="{{ .text }}"><small>{{ .text }}</small></a>
{{ end }} -
{{ with .Site.Params.footer2 }}
<a href="{{ .url | absURL }}" title="{{ .text }}"><small>{{ .text }}</small></a>
{{ end }}
</div>
</div>
|