erynwells.me/layouts/partials/site_nav.html
Eryn Wells 1713d5f849 Move site navigation to a partial
It can now be shared between the index and site header templates.
2023-05-20 08:27:55 -07:00

9 lines
298 B
HTML

{{- $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>