layouts/partials/footer.html (view raw)
1<footer>
2 <div style="display:flex">
3 {{- range $index, $key := .Site.Params.Social -}}
4 <a class="soc" href="{{ $key.url }}" title="{{ $key.name }}"><i data-feather="{{ $key.icon }}"></i></a>
5 {{- end -}}
6 </div>
7 <div class="footer-info">
8 {{ dateFormat "2006" now }} {{ with .Site.Copyright }} {{ . }} | {{ end }} <a
9 href="https://github.com/athul/archie">Archie Theme</a> | Built with <a href="https://gohugo.io">Hugo</a>
10 </div>
11</footer>
12{{ if not .Site.IsServer }}
13{{ template "_internal/google_analytics_async.html" . }}
14{{ end }}
15
16{{- if (isset .Site.Params "social") -}}
17<script>
18 feather.replace()
19</script>
20{{- end -}}