mirror of
https://github.com/CaiJimmy/hugo-theme-stack.git
synced 2025-04-29 12:03:31 +08:00
10 lines
332 B
HTML
10 lines
332 B
HTML
{{ if .Site.Params.widgets.enabled }}
|
|
{{ $context := . }}
|
|
<aside class="sidebar right-sidebar">
|
|
<div class="sidebar__inner">
|
|
{{ range $widget := .Site.Params.widgets.enabled }}
|
|
{{ partial (printf "widget/%s" $widget) $context }}
|
|
{{ end }}
|
|
</div>
|
|
</aside>
|
|
{{ end }} |