blob: 5e34bda9e5c09579a48d3d26402ac401d7d16f08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<div class="header">
<div class="header-top">
<h2 class="header-title"><a href="/">{{ site.Title }}</a></h2>
<span class="header-subtext">{{ .Params.subtext | default .Site.Params.subtext }}</span>
</div>
<ul class="header-items">
{{ $currentPage := . }}
{{ range .Site.Menus.left_nav }}
<li class="header-item header-item-left {{ if $currentPage.IsMenuCurrent "left_nav" . }} header-item-active {{ end }}">
<a href="{{ .URL }}">{{ .Name }}</a>
</li>
{{ end }}
{{ range .Site.Menus.right_nav }}
<li class="header-item header-item-right {{ if $currentPage.IsMenuCurrent "right_nav" . }} header-item-active {{ end }}">
<a href="{{ .URL }}">{{ .Name }}</a>
</li>
{{ end }}
</ul>
</div>
<div class="header-bottom"></div>
|