hugo-whisper-theme/layouts/partials/sidebar.html
Dan Webb 696e674553 Fix UniqueID deprecation warning
.UniqueID is deprecated and will be removed in a future release. Use .File.UniqueID.
2019-04-10 21:03:58 +01:00

11 lines
362 B
HTML

{{$currentNode := .}}
<div class="docs-menu">
<h4>{{ .Section | humanize }}</h4>
<ul>
{{ range (where .Site.RegularPages "Section" .Section) sort .Site.RegularPages ".Weight" }}
<li class="{{ if eq .File.UniqueID $currentNode.File.UniqueID }}active {{ end }}">
<a href="{{ .Permalink }}">{{ .Title }}</a>
</li>
{{ end }}
</ul>
</div>