mirror of
https://github.com/labstack/echo.git
synced 2024-12-22 20:06:21 +02:00
b6547dde66
Signed-off-by: Vishal Rana <vr@labstack.com>
19 lines
564 B
HTML
19 lines
564 B
HTML
<nav class="w3-sidenav">
|
|
{{ $currentNode := . }}
|
|
{{ range .Site.Menus.side }}
|
|
<h4>{{ .Pre }} {{ .Name }}</h4>
|
|
{{ range .Children }}
|
|
<a{{ if $currentNode.IsMenuCurrent "side" . }} class="w3-theme"{{ end }} href="{{ .URL }}">
|
|
{{ .Name }}
|
|
</a>
|
|
{{ if .HasChildren }}
|
|
{{ range .Children }}
|
|
<a {{ if $currentNode.IsMenuCurrent "side" . }} class="w3-theme"{{ end }} href="{{ .URL }}">
|
|
{{ .Name }}
|
|
</a>
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ end }}
|
|
</nav>
|