mirror of
https://gitlab.com/EternalWanderer/vugo.git
synced 2024-11-29 05:23:50 +01:00
15 lines
306 B
HTML
15 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>
|