vugo/layouts/partials/menu.html

15 lines
305 B
HTML
Raw Normal View History

<menu>
<a href="/">home<br/></a>
2022-08-23 23:41:20 +02:00
{{ range $.Site.Menus.main }}
{{ if not .HasChildren }}
<a href="{{ .URL }}">{{ .Name }}<br/></a>
2022-08-23 23:41:20 +02:00
{{ end }}
{{ end }}
<hr />
{{ range $.Site.Menus.services }}
{{ if not .HasChildren }}
<a href="{{ .URL }}">{{ .Name }}<br/></a>
2022-08-23 23:41:20 +02:00
{{ end }}
{{ end }}
</menu>