1
0
mirror of https://github.com/labstack/echo.git synced 2024-12-24 20:14:31 +02:00
echo/website/layouts/partials/menu.html
Vishal Rana c020919cb4 Updated website
Signed-off-by: Vishal Rana <vr@labstack.com>
2015-10-01 18:24:38 -07:00

13 lines
320 B
HTML

<aside class="menu">
<div>
{{ range .Site.Menus.main }}
{{ if .HasChildren }}
<h4>{{ .Name }}</h4>
{{ range .Children }}
<a href="{{ .URL }}">{{ .Name }}</a>
{{ end }}
{{ end }}
{{ end }}
</div>
</aside>