Initial commit

This commit is contained in:
Nox Sluijtman 2022-08-10 15:27:44 +02:00
commit d703c1bfad
31 changed files with 297 additions and 0 deletions

13
layouts/partials/nav.html Normal file
View file

@ -0,0 +1,13 @@
<nav>
<details open="">
<summary>Nav</summary>
<a href="/">Home</a>
{{- $sec := .Page.Section }}{{ $file := .File.TranslationBaseName -}}
{{ range.Site.Menus.main.ByWeight }}{{ $base := path.Base .URL }}
<li><a {{ if or ( eq $sec $base ) ( eq $file $base ) ( and (eq $sec "") ( eq $file "_index") (eq $base "/") ) }}class="menuactive" {{ end }}href="{{ .URL }}"><span class=pre>{{ .Pre }}</span><span class=menuname>{{ .Name }}</span></a></li>
{{- end }}
{{ range .Site.RegularPages }}
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
{{ end }}
</details>
</nav>