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

23 lines
747 B
HTML
Raw Permalink 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 }}
2023-01-06 19:32:10 +00:00
© {{ now.Year }} :: Powered by <a href="http://gohugo.io" target="_blank" rel="noopener noreferrer">Hugo</a>
{{ end }}
2023-01-06 19:32:10 +00:00
:: <a href="https://git.ullmann.space/rullmann/hugo-theme-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 -}}