docs/themes/learn/layouts/shortcodes/siteparam.html

7 lines
190 B
HTML
Raw Normal View History

2023-05-24 16:17:12 +00:00
{{- $paramName := (.Get 0) -}}
{{- $siteParams := .Site.Params -}}
{{- with $paramName -}}
{{- with $siteParams -}}
{{- index . (lower $paramName) -}}
{{- end -}}
{{- end -}}