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

28 lines
876 B
HTML
Raw Normal View History

{{ if $.Param "enableSidebar" }}
2019-11-04 13:09:44 +00:00
<div class="sidebar">
{{ partial "search/site-search" . }}
{{ partial "sidebar/custom-list" . }}
{{ if .Site.Params.itemsPerCategory }}
{{ range first .Site.Params.itemsPerCategory .Pages }}
<section class="sidebar-recent">
2019-12-11 02:18:44 +00:00
<a href="{{ .RelPermalink }}" class="sidebar-recent__title p1">{{ .Title }}</a>
<ul class="sidebar-recent__ul">
{{ range first .Site.Params.itemsPerCategory .Pages }}
2019-12-11 02:18:44 +00:00
<li><a href="{{ .RelPermalink }}" class="sidebar-recent__a p2">{{ .Title }}</a>
2019-11-04 13:09:44 +00:00
</li>
{{ end }}
</ul>
</section>
{{ end }}
{{ end }}
2019-11-04 13:09:44 +00:00
</div>
<hr class="hr-fade sidebar-hr" />
<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 }}