defiance-ng/layouts/partials/header.html

24 lines
793 B
HTML
Raw Normal View History

2022-07-20 14:27:20 -07:00
<div>
<nav id="nav">
<div id="nav-toggle-mobile">
<i>
<svg style="fill: #FAFAFA; margin-left: 10px;" viewBox="0 0 100 80" width="40" height="40">
<title>Hamburger menu button</title>
<rect width="100" height="20"></rect>
<rect y="30" width="100" height="20"></rect>
<rect y="60" width="100" height="20"></rect>
</svg>
</i>
</div>
<ul id="nav-list">
2022-07-20 14:27:20 -07:00
{{ range .Site.Menus.main }}
<li class="nav-li">
<a class="nav-button" href="{{ .URL }}">
{{ $text := print .Name | safeHTML }}
{{ $text }}
</a>
</li>
2022-07-20 14:27:20 -07:00
{{ end }}
</ul>
2022-07-20 14:27:20 -07:00
</nav>
</div>