defiance-ng/layouts/partials/header.html

11 lines
219 B
HTML
Raw Normal View History

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