aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes/polaris/layouts/partials/nav.html
blob: dc1e4638c3c493618490d787db286a9dcf1b94e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<div class="nav-over">
  <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>
</div>
<div class="nav-under"></div>