forked from Bunteshaus/bunteshaus.de
17 lines
978 B
HTML
17 lines
978 B
HTML
<div>
|
|
<details>
|
|
<summary style="list-style: none; text-align: right;">Menü ☰</summary>
|
|
<p>
|
|
{{ partial "structure/sidebar_submenu" . }}
|
|
{{ if .IsHome }}
|
|
<div class="footer_color" style="margin-top: 1rem; text-align: right;"><b>Languages</b></div>
|
|
{{ range $.Site.Home.AllTranslations }}
|
|
{{ if ne .Lang $.Lang }}
|
|
<li style="list-style: none; text-align: right;"><a href="{{- .Permalink -}}">{{- i18n .Lang -}}</a></li>
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ end }}
|
|
</p>
|
|
</details>
|
|
</div>
|