2019-11-12 10:03:15 +00:00
|
|
|
{{ if $.Param "enableSidebar" }}
|
|
|
|
|
2019-11-04 13:09:44 +00:00
|
|
|
{{ $currentSection := .Section }}
|
|
|
|
{{ $currentID := "" }}
|
|
|
|
{{ with .File }}{{ $currentID = .UniqueID }}{{ end }}
|
|
|
|
<div class="sidebar">
|
|
|
|
{{ partial "sidebar/site-search" . }}
|
2019-11-13 08:06:51 +00:00
|
|
|
{{ if .Site.Params.itemsPerCategory }}
|
2019-11-12 10:03:15 +00:00
|
|
|
{{ range first .Site.Params.itemsPerCategory .Pages }}
|
2019-11-04 13:09:44 +00:00
|
|
|
<section class="sidebar-list">
|
|
|
|
<a href="{{ .RelPermalink }}" class="sidebar-list__title p1 {{ if eq $currentSection .Section }}active{{ end }}">{{ .Title }}</a>
|
|
|
|
<ul class="sidebar-list__ul">
|
|
|
|
{{ range .Pages }}
|
|
|
|
<li><a href="{{ .RelPermalink }}" class="sidebar-list__a p2 {{ if eq $currentID .File.UniqueID }}active{{ end }}">{{ .Title }}</a>
|
|
|
|
</li>
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
</section>
|
|
|
|
{{ end }}
|
2019-11-13 08:06:51 +00:00
|
|
|
{{ end }}
|
2019-11-04 13:09:44 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
{{ partial "taxonomy/taxonomy-tags" . }}
|
|
|
|
{{ partial "taxonomy/taxonomy-categories" . }}
|
2019-11-12 10:03:15 +00:00
|
|
|
{{ partial "taxonomy/taxonomy-series" . }}
|
|
|
|
|
|
|
|
{{ end }}
|