hugo-theme-stack/layouts/partials/sidebar/right.html
Jimmy Cai 0634317a55 refactor: add taxonomy widget
Replaces `categories` and `tag-cloud` widget.
2023-08-16 12:45:53 +02:00

13 lines
532 B
HTML

{{- $scope := default "homepage" .Scope -}}
{{- $context := .Context -}}
{{- with (index .Context.Site.Params.widgets $scope) -}}
<aside class="sidebar right-sidebar sticky">
{{ range $widget := . }}
{{ if templates.Exists (printf "partials/widget/%s.html" .type) }}
{{ partial (printf "widget/%s" .type) (dict "Context" $context "Params" .params) }}
{{ else }}
{{ warnf "Widget %s not found" .type }}
{{ end }}
{{ end }}
</aside>
{{ end }}