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

7 lines
212 B
HTML
Raw Normal View History

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