sidebar-for-bayou/layouts/partials/sidebar-widgets/sidebar.html

13 lines
502 B
HTML
Raw Permalink Normal View History

{{ $isPost := eq .Page.Type "post" -}}
{{ $showOnPosts := $.Site.Params.sidebar_show_on_posts -}}
{{ $showOnPages := $.Site.Params.sidebar_show_on_pages -}}
{{ $shouldShowSidebar := or .IsHome (and $showOnPosts $isPost) (and $showOnPages (not $isPost)) -}}
{{ if $shouldShowSidebar -}}
<div class="sidebar">
{{ if templates.Exists "partials/sidebar.html" }}
2024-03-16 22:10:21 +00:00
{{ partial "sidebar.html" . }}
2024-03-16 22:32:10 +00:00
{{ else }}
2025-02-06 20:13:53 +00:00
{{ partial "sidebar-widgets/recommendations.html" . }}
{{ end }}
</div>
{{ end -}}