Cleanup and moved some site specific stuff to site

This commit is contained in:
Nox Sluijtman 2022-09-28 14:15:41 +02:00
parent d941df36e7
commit 4de188c7d9
14 changed files with 60 additions and 73 deletions

View file

@ -1,14 +1,14 @@
<nav class="menu">
<a href="/">home </a>
<menu>
<a href="/">home<br/></a>
{{ range $.Site.Menus.main }}
{{ if not .HasChildren }}
<a href="{{ .URL }}">{{ .Name }} </a>
<a href="{{ .URL }}">{{ .Name }}<br/></a>
{{ end }}
{{ end }}
<hr />
{{ range $.Site.Menus.services }}
{{ if not .HasChildren }}
<a href="{{ .URL }}">{{ .Name }} </a>
<a href="{{ .URL }}">{{ .Name }}<br/></a>
{{ end }}
{{ end }}
</nav>
</menu>