erynwells.me/layouts/partials/site_nav.html

10 lines
298 B
HTML
Raw Normal View History

{{- $currentPage := . -}}
{{- $url := $.RelPermalink -}}
<nav class="site bulleted">
{{ with site.Menus.main }}
{{- range . -}}
<li><a {{ if $currentPage.HasMenuCurrent "main" . }} class="active"{{ end }} href="{{ .URL }}"><span>{{ .Name }}</span></a></li>
{{- end -}}
{{ end }}
</nav>