26 lines
900 B
HTML
26 lines
900 B
HTML
<header id="header" {{ if .Params.landing }}class="alt"{{ end }}>
|
|
<h1><a href="index.html">{{ title .Site.Title }}</a></h1>
|
|
<nav id="nav">
|
|
<ul>
|
|
{{ range where .Site.Pages.ByTitle "Kind" "section" }}
|
|
<li>
|
|
<a href="{{ .Permalink }}">{{ title .Title }}</a>
|
|
{{ if .Pages }}
|
|
<ul>
|
|
{{ range first 4 .Pages.ByDate }}
|
|
<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
|
|
{{ end }}
|
|
<li><a href="{{ .Permalink }}"><i>See more {{ lower .Title }}</i></a></li>
|
|
</ul>
|
|
{{ end }}
|
|
</li>
|
|
{{ end }}
|
|
|
|
{{ range where .Site.Pages.ByTitle "Kind" "page" }}
|
|
{{ if eq .Section "" }}
|
|
<li><a href="{{ .Permalink }}">{{ title .Title }}</a></li>
|
|
{{ end }}
|
|
{{ end }}
|
|
</ul>
|
|
</nav>
|
|
</header>
|