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-06 01:25:06 +00:00
|
|
|
{{ partial "sidebar/site-bio" . }}
|
2019-12-05 10:04:42 +00:00
|
|
|
{{ partial "sidebar/custom-home" . }}
|
2019-11-15 08:37:32 +00:00
|
|
|
|
2019-11-04 13:09:44 +00:00
|
|
|
{{ range (and (where .Site.Sections "Type" "!=" "about") (where .Site.Sections "Type" "!=" "archive")) }}
|
2019-11-24 14:31:28 +00:00
|
|
|
<section class="sidebar-recent">
|
|
|
|
<a href="{{ .RelPermalink }}" class="sidebar-recent__title p2">{{ .Title }}</a>
|
|
|
|
<ul class="sidebar-recent__ul">
|
2019-11-13 08:06:51 +00:00
|
|
|
{{ if .Site.Params.itemsPerCategory }}
|
2019-11-11 03:11:03 +00:00
|
|
|
{{ range first .Site.Params.itemsPerCategory .Pages }}
|
2019-11-24 14:31:28 +00:00
|
|
|
<li><a href="{{ .RelPermalink }}" class="sidebar-recent__a p2">{{ .Title }}</a>
|
2019-11-04 13:09:44 +00:00
|
|
|
</li>
|
|
|
|
{{ end }}
|
2019-11-13 08:06:51 +00:00
|
|
|
{{ end }}
|
2019-11-04 13:09:44 +00:00
|
|
|
</ul>
|
|
|
|
</section>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
|
2019-11-18 12:14:32 +00:00
|
|
|
<hr class="hr-fade sidebar-hr" />
|
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-18 12:14:32 +00:00
|
|
|
<hr class="hr-fade sidebar-hr" />
|
2019-11-12 10:03:15 +00:00
|
|
|
|
|
|
|
{{ end }}
|