Files
west575-site/layouts/partials/header.html
T
will 19034a026e Initial scaffold: Hugo site for west575.org
Blog with contact form and newsletter signup, structured like the
other Reground-hosted sites but with its own visual identity.
2026-08-27 05:28:14 -04:00

11 lines
313 B
HTML

<header class="site">
<div class="inner">
<a class="brand" href="/">{{ .Site.Title }}</a>
<nav aria-label="Primary">
{{ range .Site.Menus.main }}
<a href="{{ .URL }}"{{ if $.IsMenuCurrent "main" . }} aria-current="page"{{ end }}>{{ .Name }}</a>
{{ end }}
</nav>
</div>
</header>