all repos — archie @ 2f312c3759adf9059791a7cd697788018d09dbe8

A minimal Hugo Theme

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    <a class="border"></a>
 6    {{- end -}}
 7  </div>
 8  <div class="footer-info">
 9    {{ dateFormat "2006" now }} {{ with .Site.Copyright }} {{ . }} | {{ end }} <a
10      href="https://github.com/athul/archie">Archie Theme</a> | Built with <a href="https://gohugo.io">Hugo</a>
11  </div>
12</footer>
13{{ if not .Site.IsServer }}
14{{ template "_internal/google_analytics_async.html" . }}
15{{ end }}
16
17{{- if (isset .Site.Params "social") -}}
18<script>
19  feather.replace()
20</script>
21{{- end -}}