8 lines
275 B
HTML
8 lines
275 B
HTML
{{ if .Site.Params.widgets.enabled }}
|
|
{{ $context := . }}
|
|
<aside class="sidebar right-sidebar sticky">
|
|
{{ range $widget := .Site.Params.widgets.enabled }}
|
|
{{ partial (printf "widget/%s" $widget) $context }}
|
|
{{ end }}
|
|
</aside>
|
|
{{ end }} |