layouts/partials/footer.html (view raw)
1<footer>
2 <div style="display:flex">
3 <a class="border"></a>
4 {{- range $index, $key := .Site.Params.Social -}}
5 <a class="soc" href="{{ $key.url }}" rel="me" title="{{ $key.name }}"><i data-feather="{{ $key.icon }}"></i></a>
6 <a class="border"></a>
7 {{- end -}}
8 </div>
9</footer>
10{{ if not .Site.IsServer }}
11{{ template "_internal/google_analytics_async.html" . }}
12{{ end }}
13
14{{- if (isset .Site.Params "social") -}}
15<script>
16 feather.replace()
17</script>
18{{- end -}}