mirror of
https://gitlab.com/EternalWanderer/vugo.git
synced 2025-06-08 06:14:26 +02:00
14 lines
306 B
HTML
14 lines
306 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>
|