archie-shades-of-purple/layouts/partials/footer.html

22 lines
683 B
HTML
Raw Normal View History

2020-04-08 20:44:29 +02:00
<footer>
<div style="display:flex">
{{- range $index, $key := .Site.Params.Social -}}
2022-11-06 12:54:30 +01:00
<a class="soc" href="{{ $key.url }}" rel="me" title="{{ $key.name }}"><i data-feather="{{ $key.icon }}"></i></a>
<a class="border"></a>
{{- end -}}
</div>
<div class="footer-info">
{{ dateFormat "2006" now }} {{ with .Site.Copyright }} {{ . }} | {{ end }} <a
href="https://github.com/athul/archie">Archie Theme</a> | Built with <a href="https://gohugo.io">Hugo</a>
</div>
2020-04-08 20:44:29 +02:00
</footer>
{{ if not hugo.IsServer }}
{{ template "_internal/google_analytics.html" . }}
2020-04-08 20:44:29 +02:00
{{ end }}
2020-04-22 12:14:28 +02:00
{{- if (isset .Site.Params "social") -}}
2020-04-10 21:41:05 +02:00
<script>
feather.replace()
2020-04-11 08:59:56 +02:00
</script>
2020-06-24 09:57:58 +02:00
{{- end -}}