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

31 lines
1008 B
HTML

{{ if $.Param "enableSidebar" }}
<div class="sidebar">
{{ partial "sidebar/site-search" . }}
{{ partial "sidebar/site-bio" . }}
{{ 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">
{{ if .Site.Params.itemsPerCategory }}
{{ range first .Site.Params.itemsPerCategory .Pages }}
<li><a href="{{ .RelPermalink }}" class="sidebar-home__a p2">{{ .Title }}</a>
</li>
{{ end }}
{{ end }}
</ul>
</section>
{{ end }}
</div>
<hr class="hr-fade sidebar-hr" />
<div class="taxo-root">
{{ partial "taxonomy/taxonomy-tags" . }}
{{ partial "taxonomy/taxonomy-categories" . }}
{{ partial "taxonomy/taxonomy-series" . }}
</div>
<hr class="hr-fade sidebar-hr" />
{{ partial "sidebar/site-subs" . }}
{{ end }}