vugo/layouts/partials/menu.html

7 lines
291 B
HTML
Raw Normal View History

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