1
0
Fork 0
mirror of https://git.sr.ht/~ashkeel/strimertul-website synced 2024-10-31 21:33:09 +00:00
strimertul-website/layouts/partials/menu.html

29 lines
615 B
HTML
Raw Normal View History

2023-02-28 16:59:26 +00:00
<nav>
{{ $currentPage := .context }}
{{ range .menu }}
{{ if .HasChildren }}
<header>{{ .Title }}</header>
<ul class="sub-menu">
{{ range .Children }}
<li
class="{{ if $currentPage.IsMenuCurrent "guides" . }}
active
{{ end }}"
>
<a href="{{ .URL }}">{{ .Name }}</a>
</li>
{{ end }}
</ul>
{{ else }}
<ul>
<li>
<a href="{{ .URL }}">
{{ .Pre }}
<span>{{ .Name }}</span>
</a>
</li>
</ul>
{{ end }}
{{ end }}
</nav>