First commit

This commit is contained in:
2026-01-14 23:24:24 +01:00
commit c9f15b87b3
214 changed files with 9851 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 }}