All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
21 lines
842 B
HTML
21 lines
842 B
HTML
<footer>
|
|
XXX
|
|
<div style="display:flex">
|
|
{{- range $index, $key := .Site.Params.Social -}}
|
|
{{- if hasPrefix $key.icon "simple:" -}}
|
|
<a class="soc" href="{{ $key.url }}" rel="me" title="{{ $key.name }}"><i class="si si-{{ substr $key.icon 7 }}"></i></a>
|
|
{{- else -}}
|
|
<a class="soc" href="{{ $key.url }}" rel="me" title="{{ $key.name }}">{{ template "feathericon" (dict "Icon" $key.icon "UseCDN" .Site.Params.useCDN) }}</a>
|
|
{{- end -}}
|
|
<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>
|
|
</footer>
|
|
{{ if not hugo.IsServer }}
|
|
{{ template "_internal/google_analytics.html" . }}
|
|
{{ end }}
|