hugo-theme-zzo/layouts/partials/sidebar/sidebar-list.html

31 lines
1.1 KiB
HTML
Raw Normal View History

{{ if $.Param "enableSidebar" }}
2019-11-04 13:09:44 +00:00
{{ $currentSection := .Section }}
{{ $currentID := "" }}
{{ with .File }}{{ $currentID = .UniqueID }}{{ end }}
<div class="sidebar">
{{ partial "search/site-search" . }}
{{ partial "sidebar/custom-list" . }}
{{ if .Site.Params.itemsPerCategory }}
{{ range first .Site.Params.itemsPerCategory .Pages }}
<section class="sidebar-recent">
<a href="{{ .RelPermalink }}" class="sidebar-recent__title p1 {{ if eq $currentSection .Section }}active{{ end }}">{{ .Title }}</a>
<ul class="sidebar-recent__ul">
{{ range first .Site.Params.itemsPerCategory .Pages }}
<li><a href="{{ .RelPermalink }}" class="sidebar-recent__a p2 {{ if eq $currentID .File.UniqueID }}active{{ end }}">{{ .Title }}</a>
2019-11-04 13:09:44 +00:00
</li>
{{ end }}
</ul>
</section>
{{ end }}
{{ end }}
2019-11-04 13:09:44 +00:00
</div>
<hr class="hr-fade sidebar-hr" />
<div class="taxo-root">
2019-11-04 13:09:44 +00:00
{{ partial "taxonomy/taxonomy-tags" . }}
{{ partial "taxonomy/taxonomy-categories" . }}
{{ partial "taxonomy/taxonomy-series" . }}
</div>
{{ end }}