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

18 lines
643 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-04-04 19:28:17 +02:00
{{ partial "structure/sidebar_submenu" . }}
2022-04-03 01:02:41 +02:00
{{ if .IsHome }}
<h4>{{ "Languages" }}</h3>
{{ range .Translations }}
{{ if ne .Lang $.Lang }}
2022-04-04 19:19:22 +02:00
<li style="list-style: none;"><a href="{{- .Permalink -}}">{{- i18n .Lang -}}</a></li>
2022-04-03 01:02:41 +02:00
{{ end }}
{{ end }}
2022-04-03 21:08:42 +02:00
{{ end }}
{{ $t := where .Site.Taxonomies.categories ".Page.Section" "events" }}
{{ range $t }}
<li><a href="{{ .Page.Permalink }}">{{ .Page.Title }}</a></li>
{{ end }}
2022-03-26 19:22:14 +01:00
</section>