bunteshaus.de/themes/buha/layouts/partials/sidebar.html

25 lines
993 B
HTML
Raw Normal View History

2022-03-26 19:22:14 +01:00
{{ $s := .Site.Params }}
2021-10-23 22:20:01 +02:00
<section class="sidebar_inner">
2022-03-27 14:42:21 +02:00
2022-04-03 01:02:41 +02:00
<h3>{{ T "events" }}</h3>
<a href="{{ "/events" | relLangURL}}">{{ "all" | T }}</a>
2022-03-27 14:42:21 +02:00
{{ range $taxonomyname, $taxonomy := .Site.Taxonomies.categories }}
2022-03-27 16:00:42 +02:00
{{ $orig := $taxonomyname }}
{{ if ne (i18n $taxonomyname) "" }}
{{ $taxonomyname = i18n $taxonomyname }}
{{ else }}
{{ $taxonomyname = $taxonomyname | humanize }}
{{ end }}
<li style="list-style: none;"><a href="{{ "categories/" | relLangURL}}{{ $orig | urlize }}">{{ $taxonomyname }}</a></li>
2022-03-27 03:17:45 +02:00
{{ end }}
2022-04-03 01:02:41 +02:00
{{ if .IsHome }}
<h4>{{ "Languages" }}</h3>
{{ range .Translations }}
{{ if ne .Lang $.Lang }}
<li style="list-style: none;"><a href="{{- .Permalink -}}" class="underline">{{- .Lang -}}</a></li>
{{ end }}
{{ end }}
{{ end }}
2022-03-26 19:22:14 +01:00
</section>