10 lines
240 B
HTML
10 lines
240 B
HTML
{{- $context := .context }}
|
|
{{- $paramName := .name }}
|
|
{{- with $context }}
|
|
{{- $siteParams := .Site.Params }}
|
|
{{- with $paramName }}
|
|
{{- with $siteParams }}
|
|
{{- index . (lower $paramName) }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }} |