Initial commit

This commit is contained in:
2025-03-23 11:26:00 +01:00
commit b25dc76d49
58 changed files with 8900 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<footer>
<div style="display:flex">
{{- range $index, $key := .Site.Params.Social -}}
{{- if $key.icon -}}
{{- 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 -}}
{{- else -}}
<a class="soc" href="{{ $key.url }}" rel="me" title="{{ $key.name }}">{{ $key.name }}</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> | Gemacht mit <a href="https://gohugo.io">Hugo</a>
</div>
</footer>
{{ if not hugo.IsServer }}
{{ template "_internal/google_analytics.html" . }}
{{ end }}