justice/layouts/partials/header.html
2023-12-28 00:00:46 -05:00

10 lines
No EOL
219 B
HTML

<header>
<a href='/'>
<h1>{{.Site.Title}}</h1>
</a>
<nav>{{ range .Site.Sections.ByWeight}}
<a href="{{.Permalink}}">
<h2>{{.Title}}</h2>
</a> {{end}}
</nav>
</header>