30 lines
1.0 KiB
HTML
30 lines
1.0 KiB
HTML
|
{{- $sidebar := false }}
|
||
|
{{- if eq .Kind "home" -}}
|
||
|
{{ $sidebar = (default .Site.Params.sidebar.home .Params.sidebar) }}
|
||
|
{{- else if eq .Kind "page" -}}
|
||
|
{{ $sidebar = (default .Site.Params.sidebar.single .Params.sidebar) }}
|
||
|
{{- else -}}
|
||
|
{{ $sidebar = (default .Site.Params.sidebar.list .Params.sidebar) }}
|
||
|
{{ end }}
|
||
|
|
||
|
{{- if $sidebar -}}
|
||
|
<aside class="sidebar{{ if eq $sidebar "left" }} sidebar--left{{ end }}">
|
||
|
{{- $root := . }}
|
||
|
{{- with (default .Site.Params.sidebar.widgets .Params.widgets) -}}
|
||
|
{{- range $widget := . }}
|
||
|
{{- $widgetPath := printf "widgets/%s.html" $widget }}
|
||
|
{{- $widgetCached := false }}
|
||
|
{{- if isset $.Site.Params "widgets" }}
|
||
|
{{- $widgetCached = (index $.Site.Params.widgets $widget).cached }}
|
||
|
{{- end }}
|
||
|
{{- if eq $widgetCached true }}
|
||
|
{{- partialCached $widgetPath $root }}
|
||
|
{{- else }}
|
||
|
{{- partial $widgetPath $root }}
|
||
|
{{- end }}
|
||
|
{{- end }}
|
||
|
{{- else }}
|
||
|
<p class="sidebar__warning"><strong>{{ T "sidebar_warning" }}:</strong><br>{{ T "sidebar_recommendation" }}</p>
|
||
|
{{- end }}
|
||
|
</aside>
|
||
|
{{- end }}
|