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

15 lines
1008 B
HTML
Raw Normal View History

2022-03-27 14:42:21 +02:00
<div>
<details>
2022-03-27 15:01:04 +02:00
<summary style="list-style: none; text-align: right;">Termine ☰</summary>
2022-03-27 14:42:21 +02:00
<p>
2022-03-27 15:01:04 +02:00
{{- $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 }}
2022-03-27 14:42:21 +02:00
</p>
</details>
</div>