mirror of
https://gitlab.com/EternalWanderer/vugo.git
synced 2024-11-29 05:23:50 +01:00
14 lines
594 B
HTML
14 lines
594 B
HTML
<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>
|