mirror of
https://github.com/TeamPiped/hugo-whisper-theme.git
synced 2024-08-14 23:57:00 +00:00
11 lines
No EOL
308 B
HTML
11 lines
No EOL
308 B
HTML
{{$currentNode := .}}
|
|
<div class="docs-menu">
|
|
<h4>Docs</h4>
|
|
<ul>
|
|
{{ range (where .Site.Pages "Section" "docs") sort .Site.Pages ".Weight" }}
|
|
<li class="{{ if eq .UniqueID $currentNode.UniqueID }}active {{ end }}">
|
|
<a href="{{ .URL }}">{{ .Title }}</a>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
</div> |