1
Fork 0
theorangeone.net-legacy/layouts/partials/navbar.html

27 lines
891 B
HTML
Raw Normal View History

2017-04-21 13:57:07 +01:00
<header id="header" {{ if .Params.landing }}class="alt"{{ end }}>
2017-04-23 12:31:42 +01:00
<h1><a href="/">{{ title .Site.Title }}</a></h1>
<nav id="nav">
<ul>
2017-04-22 23:24:13 +01:00
{{ range where .Site.Pages.ByTitle "Kind" "section" }}
<li>
2017-04-23 11:40:15 +01:00
<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 }}
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 "" }}
<li><a href="{{ .Permalink }}">{{ title .Title }}</a></li>
2017-04-22 23:24:13 +01:00
{{ end }}
{{ end }}
</ul>
</nav>
</header>