aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes/polaris/layouts/partials/nav.html
blob: 35fb53583dfffc60ae12e9ee5d7b4db5a800a4f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<div class="nav-title">
  <h2><a href="/">{{ site.Title }}</a></h2>
  {{ $subtext := .Params.subtext | default .Site.Params.subtext }}
  {{ with $subtext }}<span class="nav-subtext">{{ . }}</span>{{ end }}
</div>
<ul>
  {{ $currentPage := . }}
  {{ range site.Menus.left_nav }}
    <li><a class="nav-link link-left {{ if $currentPage.IsMenuCurrent "left_nav" . }} link-active {{ end }}" href="{{ .URL }}">{{ .Name }}</a></li>
  {{ end }}
  {{ range site.Menus.right_nav }}
    <li><a class="nav-link link-right {{ if $currentPage.IsMenuCurrent "right_nav" . }} link-active {{ end }}" href="{{ .URL }}">{{ .Name }}</a></li>
  {{ end }}
</ul>