etch/layouts/partials/header.html

14 lines
390 B
HTML
Raw Normal View History

2020-05-15 02:48:11 -04:00
<header id="banner">
2020-05-15 17:35:58 -04:00
<h2><a href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a></h2>
2020-05-15 02:48:11 -04:00
<nav>
<ul>
2020-05-15 17:35:58 -04:00
<li><a href="{{ .Site.BaseURL }}">posts</a></li>
2020-05-15 20:47:34 -04:00
{{ range where .Site.Home.Pages "Title" "!=" "Posts" }}
2020-05-15 02:48:11 -04:00
<li>
<a href="{{ .Permalink }}">{{ .Title }}</a>
</li>
2020-05-15 20:47:34 -04:00
{{ end }}
2020-05-15 02:48:11 -04:00
</ul>
</nav>
</header>