1
0
Fork 0
forked from planex/defiance
defiance-ng/layouts/partials/header.html

10 lines
197 B
HTML
Raw Normal View History

2022-07-20 14:27:20 -07:00
<div>
<nav>
{{ range .Site.Menus.main }}
<a href="{{ .URL }}">
{{ $text := print .Name | safeHTML }}
{{ $text }}
</a>
{{ end }}
</nav>
</div>