mirror of
https://github.com/TeamPiped/hugo-whisper-theme.git
synced 2024-08-14 23:57:00 +00:00
use mainSections, update Permalinks and asset URLS
This commit is contained in:
parent
eba613e044
commit
d87fbd97cc
17 changed files with 59 additions and 50 deletions
11
layouts/partials/sidebar.html
Normal file
11
layouts/partials/sidebar.html
Normal file
|
@ -0,0 +1,11 @@
|
|||
{{$currentNode := .}}
|
||||
<div class="docs-menu">
|
||||
<h4>{{ .Section | humanize }}</h4>
|
||||
<ul>
|
||||
{{ range (where .Site.RegularPages "Section" .Section) sort .Site.RegularPages ".Weight" }}
|
||||
<li class="{{ if eq .UniqueID $currentNode.UniqueID }}active {{ end }}">
|
||||
<a href="{{ .Permalink }}">{{ .Title }}</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue