erster brauchbarer stand.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
maik
2026-08-18 15:32:41 +02:00
co-authored by Claude Opus 4.8
commit 936b710edf
460 changed files with 13751 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
<!-- TOPBAR (nur ab @m) -->
{{ with site.Params.languages }}
<div class="op-topbar uk-visible@m">
<div class="uk-container uk-container-expand">
<div class="uk-flex uk-flex-right uk-flex-middle" style="min-height:44px;">
<nav aria-label="Sprachauswahl">
<ul class="uk-subnav uk-margin-remove">
{{ range . }}
<li{{ if .active }} class="uk-active"{{ end }}>
<a href="{{ .url | default "#" }}" lang="{{ .lang }}"{{ if .active }} aria-current="true"{{ end }}>{{ .name }}</a>
</li>
{{ end }}
</ul>
</nav>
</div>
</div>
</div>
{{ end }}