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

21 lines
679 B
HTML
Raw Normal View History

{{ if $.Param "enableSidebar" }}
<ul class="sidebar">
{{ partial "search/site-search" . }}
{{ partial "sidebar/custom-list" . }}
2020-01-18 13:38:55 +00:00
{{ if and .Site.Params.itemsPerCategory .Site.Params.enableListSidebarTitles }}
{{ range first .Site.Params.itemsPerCategory .Pages }}
<li class="sidebar-recent">
2020-01-18 13:38:55 +00:00
<a href="{{ .RelPermalink }}" class="sidebar-recent__title p1">{{ .Title }}</a>
</li>
2020-01-18 13:38:55 +00:00
{{ end }}
<hr class="hr-fade sidebar-hr" />
{{ end }}
</ul>
<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 }}