docs/themes/learn/layouts/shortcodes/siteparam.html
2023-05-24 18:17:12 +02:00

7 lines
190 B
HTML

{{- $paramName := (.Get 0) -}}
{{- $siteParams := .Site.Params -}}
{{- with $paramName -}}
{{- with $siteParams -}}
{{- index . (lower $paramName) -}}
{{- end -}}
{{- end -}}