30 lines
979 B
HTML
30 lines
979 B
HTML
{{ if $.Param "enableSidebar" }}
|
|
|
|
<div class="sidebar">
|
|
{{ partial "search/site-search" . }}
|
|
{{ partial "sidebar/site-bio" . }}
|
|
|
|
{{ range (and (where .Site.Sections "Type" "!=" "about") (where .Site.Sections "Type" "!=" "archive")) }}
|
|
<section class="sidebar-recent">
|
|
<a href="{{ .RelPermalink }}" class="sidebar-recent__title p2">{{ .Title }}</a>
|
|
<ul class="sidebar-recent__ul">
|
|
{{ if .Site.Params.itemsPerCategory }}
|
|
{{ range first .Site.Params.itemsPerCategory .Pages }}
|
|
<li><a href="{{ .RelPermalink }}" class="sidebar-recent__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" />
|
|
|
|
{{ end }} |