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

26 lines
907 B
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 "sidebar/site-search" . }}
{{ range (and (where .Site.Sections "Type" "!=" "about") (where .Site.Sections "Type" "!=" "archive")) }}
<section class="sidebar-home">
<a href="{{ .RelPermalink }}" class="sidebar-home__title p2">{{ .Title }}</a>
<ul class="sidebar-home__ul">
{{ range first .Site.Params.itemsPerCategory .Pages }}
2019-11-04 13:09:44 +00:00
<li><a href="{{ .RelPermalink }}" class="sidebar-home__a p2">{{ .Title }}</a>
</li>
{{ end }}
</ul>
</section>
{{ end }}
</div>
{{ partial "taxonomy/taxonomy-tags" . }}
{{ partial "taxonomy/taxonomy-categories" . }}
{{ partial "taxonomy/taxonomy-series" . }}
{{ partial "sidebar/site-subs" . }}
{{ end }}