hugo-theme-archie/layouts/partials/footer.html

23 lines
723 B
HTML
Raw Normal View History

2020-04-08 18:44:29 +00:00
<footer>
<div style="display:flex">
{{- range $index, $key := .Site.Params.Social -}}
2022-11-06 11:54:30 +00: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">
{{ if $.Site.Copyright }}
{{ $.Site.Copyright | safeHTML }}
{{ else }}
© {{ now.Year }} Powered by <a href="http://gohugo.io" target="_blank" rel="noopener noreferrer">Hugo</a>
{{ end }}
:: <a href="https://github.com/athul/archie" target="_blank" rel="noopener noreferrer">Archie theme</a>
</div>
2020-04-08 18:44:29 +00:00
</footer>
2020-04-22 10:14:28 +00:00
{{- if (isset .Site.Params "social") -}}
2020-04-10 19:41:05 +00:00
<script>
feather.replace()
2020-04-11 06:59:56 +00:00
</script>
2020-06-24 07:57:58 +00:00
{{- end -}}