Welcome to mirror list, hosted at ThFree Co, Russian Federation.

docs-menu.html « partials « layouts - github.com/JugglerX/hugo-whisper-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: adbbac42803d43c0a6d8a6f4a032a300ca3f6208 (plain)
1
2
3
4
5
6
7
8
9
10
11
{{$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>