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

37 lines
1.3 KiB
HTML
Raw Normal View History

{{ if $.Param "enableSidebar" }}
<div class="sidebar">
{{ partial "search/site-search" . }}
{{ partial "sidebar/site-bio" . }}
{{ partial "sidebar/custom-home" . }}
{{ partial "sidebar/list/posts-by-order" . }}
2020-01-31 06:06:30 +00:00
{{ if and ($.Param "itemsPerCategory") ($.Param "enableHomeSidebarTitles") }}
{{ $filteredSections := .Site.Sections }}
2020-01-31 06:06:30 +00:00
{{ range $.Param "notAllowedTypesInHomeSidebar" }}
{{ $filteredSections = (where $filteredSections "Type" "!=" (lower .)) }}
{{ end }}
{{ range $filteredSections }}
<section class="sidebar-recent">
<a href="{{ .RelPermalink }}" class="sidebar-recent__title p2">{{ .Title }}</a>
<ul class="sidebar-recent__ul">
2020-01-31 06:06:30 +00:00
{{ range first ($.Param "itemsPerCategory") .Pages }}
<li>
<a href="{{ .RelPermalink }}" class="sidebar-recent__a p2">{{ .Title }}</a>
</li>
{{ end }}
</ul>
</section>
<hr class="hr-fade sidebar-hr" />
{{ end }}
2019-11-04 13:09:44 +00:00
{{ end }}
</div>
<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>
<hr class="hr-fade sidebar-hr" />
{{ end }}