justice/layouts/partials/header.html

10 lines
219 B
HTML
Raw Normal View History

2023-12-27 20:47:48 -05:00
<header>
2023-12-28 00:00:46 -05:00
<a href='/'>
<h1>{{.Site.Title}}</h1>
</a>
2023-12-27 20:47:48 -05:00
<nav>{{ range .Site.Sections.ByWeight}}
<a href="{{.Permalink}}">
<h2>{{.Title}}</h2>
</a> {{end}}
</nav>
</header>