etch/layouts/partials/header.html

14 lines
360 B
HTML
Raw Normal View History

2020-05-15 02:48:11 -04:00
<header id="banner">
<h2><a href="/">{{ .Site.Title }}</a></h2>
<nav>
<ul>
2020-05-15 16:42:45 -04:00
<li><a href="/">posts</a></li>
{{- range where .Site.Home.Pages "Section" "!=" "posts" -}}
2020-05-15 02:48:11 -04:00
<li>
<a href="{{ .Permalink }}">{{ .Title }}</a>
</li>
2020-05-15 16:42:45 -04:00
{{- end -}}
2020-05-15 02:48:11 -04:00
</ul>
</nav>
</header>