Erstes Commit

This commit is contained in:
2026-02-19 18:37:05 +01:00
commit 74a5b5bbb7
97 changed files with 1792 additions and 0 deletions

19
hugo/layouts/if/all.html Normal file
View File

@@ -0,0 +1,19 @@
{{ define "title" }}
{{- .Title }} :: {{ .Site.Title -}}
{{ end }}
{{ define "main" }}
<nav class="submenu box">
<h2>Bereiche:</h2>
<ul>
{{- $page := . }}
{{- range site.Menus.if }}
{{- if $page.IsMenuCurrent .Menu . }}
<li class="active"><a href="{{.URL}}">{{.Name}}</a></li>
{{- else }}
<li><a href="{{.URL}}">{{.Name}}</a></li>
{{- end }}
{{- end }}
</ul>
</nav>
{{ .Content }}
{{ end }}