mirror of
https://gitlab.com/EternalWanderer/vugo.git
synced 2025-06-07 22:04:25 +02:00
14 lines
355 B
HTML
14 lines
355 B
HTML
<nav class="menu">
|
|
<a href="/">home </a>
|
|
{{ range $.Site.Menus.main }}
|
|
{{ if not .HasChildren }}
|
|
<a href="{{ .URL }}">{{ .Name }} </a>
|
|
{{ end }}
|
|
{{ end }}
|
|
<hr />
|
|
{{ range $.Site.Menus.services }}
|
|
{{ if not .HasChildren }}
|
|
<a href="{{ .URL }}">{{ .Name }} </a>
|
|
{{ end }}
|
|
{{ end }}
|
|
</nav>
|