bunteshaus.de/themes/buha/layouts/partials/submenu.html
2022-03-27 15:01:04 +02:00

15 lines
1008 B
HTML

<div>
<details>
<summary style="list-style: none; text-align: right;">Termine ☰</summary>
<p>
{{- $recurrent := where .Site.RegularPages "Params.recurrent" true }}
{{ if $recurrent }}
<li style="list-style: none; text-align: right;"><a href="{{ "/" | relLangURL}}{{ "recurrent" | urlize }}">{{ "recurrent" | T | humanize }}</a></li>
{{ end }}
{{ range $taxonomyname, $taxonomy := .Site.Taxonomies.categories }}
<li style="list-style: none; text-align: right;"><a href="{{ "categories/" | relLangURL}}{{ $taxonomyname | urlize }}">{{ $taxonomyname | humanize }}</a></li>
{{ end }}
</p>
</details>
</div>