2019-11-12 10:03:15 +00:00
|
|
|
{{ if $.Param "enableSidebar" }}
|
|
|
|
|
2019-11-04 13:09:44 +00:00
|
|
|
<div class="sidebar">
|
2019-11-24 14:31:28 +00:00
|
|
|
{{ partial "search/site-search" . }}
|
2019-12-05 10:04:42 +00:00
|
|
|
{{ 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 }}
|
|
|
|
<section class="sidebar-recent">
|
|
|
|
<a href="{{ .RelPermalink }}" class="sidebar-recent__title p1">{{ .Title }}</a>
|
|
|
|
<ul class="sidebar-recent__ul">
|
|
|
|
{{ range first .Site.Params.itemsPerCategory .Pages }}
|
|
|
|
<li><a href="{{ .RelPermalink }}" class="sidebar-recent__a p2">{{ .Title }}</a>
|
|
|
|
</li>
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
</section>
|
|
|
|
{{ end }}
|
|
|
|
<hr class="hr-fade sidebar-hr" />
|
2019-11-13 08:06:51 +00:00
|
|
|
{{ end }}
|
2019-11-04 13:09:44 +00:00
|
|
|
</div>
|
2019-11-17 11:01:09 +00:00
|
|
|
<div class="taxo-root">
|
2019-11-04 13:09:44 +00:00
|
|
|
{{ partial "taxonomy/taxonomy-tags" . }}
|
|
|
|
{{ partial "taxonomy/taxonomy-categories" . }}
|
2019-11-12 10:03:15 +00:00
|
|
|
{{ partial "taxonomy/taxonomy-series" . }}
|
2019-11-17 11:01:09 +00:00
|
|
|
</div>
|
2019-11-12 10:03:15 +00:00
|
|
|
|
|
|
|
{{ end }}
|