bunteshaus.de/themes/buha/layouts/partials/structure/footer.html

40 lines
1.2 KiB
HTML
Raw Normal View History

2021-10-23 22:20:01 +02:00
{{- if eq site.Params.contact true }}
<div class="infobox">
2022-04-03 21:08:42 +02:00
{{ $contact := "contact" }}
{{ if i18n $contact }}
{{ $contact = i18n "contact" }}
{{ end }}
<a href="{{- "contact" | absLangURL -}}">{{- $contact | strings.FirstUpper -}}:</a><br><br>
2021-10-23 22:20:01 +02:00
{{- partial "contact.html" -}}
</div>
{{- end -}}
2022-04-03 01:12:28 +02:00
<div class="infobox">
{{- if eq site.Params.archive true -}}
2022-04-03 21:08:42 +02:00
{{ $archive := "archive" }}
{{ if i18n $archive }}
{{ $archive = i18n "archive" }}
{{ end }}
<a href="{{- "archive" | absLangURL -}}">{{- $archive | strings.FirstUpper -}}</a><br><br>
2022-04-03 01:12:28 +02:00
{{- end -}}
2022-04-04 19:30:58 +02:00
<a href="{{- "orga" | absLangURL -}}">Orga</a><br><br>
</div>
<div class="infobox">
2022-04-03 01:12:28 +02:00
{{- if eq site.Params.imprint true -}}
2022-04-03 21:08:42 +02:00
{{ $imprint := "imprint" }}
{{ if i18n $imprint }}
{{ $imprint = i18n "imprint" }}
{{ end }}
<a href="{{- "imprint" | absLangURL -}}">{{- $imprint | strings.FirstUpper -}}</a><br><br>
2022-04-03 01:12:28 +02:00
{{- end -}}
2022-04-04 19:30:58 +02:00
{{- with .OutputFormats.Get "rss" -}}
2022-04-03 01:12:28 +02:00
{{- if .Permalink -}}
{{- printf `<a href="%s">` .Permalink | safeHTML -}}
2021-10-23 22:20:01 +02:00
{{- end -}}
2022-04-03 01:12:28 +02:00
RSS</a><br><br>
{{- end -}}
<a href="https://schlomp.space/Bunteshaus/bunteshaus.de">Sourcecode</a>
</div>
2022-04-03 01:02:41 +02:00