hugo-theme-relearn/layouts/partials/shortcodes/siteparam.html

11 lines
300 B
HTML
Raw Normal View History

{{- $context := .context }}
{{- $paramNames := split .name "." }}
{{- with $context }}
{{- $params := .Site.Params }}
{{- range $paramName := $paramNames }}
{{- with $params }}
{{- $params = index . (lower $paramName) }}
{{- end }}
{{- end }}
{{- $params | .RenderString }}
{{- end }}