2017-04-24 09:13:17 +01:00
|
|
|
<header id="header" {{ if .IsHome }}class="alt"{{ end }}>
|
2017-04-23 12:31:42 +01:00
|
|
|
<h1><a href="/">{{ title .Site.Title }}</a></h1>
|
2017-04-20 22:00:16 +01:00
|
|
|
<nav id="nav">
|
|
|
|
<ul>
|
2017-04-22 23:24:13 +01:00
|
|
|
{{ range where .Site.Pages.ByTitle "Kind" "section" }}
|
|
|
|
<li>
|
2017-05-06 19:39:56 +01:00
|
|
|
<a href="{{ .Permalink }}">{{ .LinkTitle }}</a>
|
2017-04-23 11:40:15 +01:00
|
|
|
{{ if .Pages }}
|
|
|
|
<ul>
|
|
|
|
{{ range first 4 .Pages.ByDate }}
|
2017-04-24 09:11:36 +01:00
|
|
|
<li><a href="{{ .Permalink }}">{{ .LinkTitle }}</a></li>
|
2017-04-23 11:40:15 +01:00
|
|
|
{{ end }}
|
2017-05-06 19:39:56 +01:00
|
|
|
<li><a href="{{ .Permalink }}"><i>See more</i></a></li>
|
2017-04-23 11:40:15 +01:00
|
|
|
</ul>
|
|
|
|
{{ end }}
|
2017-04-22 23:24:13 +01:00
|
|
|
</li>
|
|
|
|
{{ end }}
|
2017-04-23 11:40:15 +01:00
|
|
|
|
2017-04-22 23:24:13 +01:00
|
|
|
{{ range where .Site.Pages.ByTitle "Kind" "page" }}
|
2017-04-23 11:40:15 +01:00
|
|
|
{{ if eq .Section "" }}
|
2017-04-24 09:11:36 +01:00
|
|
|
<li><a href="{{ .Permalink }}">{{ title .LinkTitle }}</a></li>
|
2017-04-22 23:24:13 +01:00
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
2017-04-20 22:00:16 +01:00
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
</header>
|