mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-23 15:57:57 +00:00
17 lines
No EOL
568 B
HTML
17 lines
No EOL
568 B
HTML
{{- $page := .page }}
|
|
{{- if and (not $page) .context }}
|
|
{{- $page = .context }}
|
|
{{- warnf "%q: DEPRECATED parameter 'context' for shortcode 'siteparam' found, use 'page' instead; see https://mcshelby.github.io/hugo-theme-relearn/basics/migration/#5180" $page.File.Path }}
|
|
{{- end }}
|
|
{{- $paramNames := split .name "." }}
|
|
{{- with $page }}
|
|
{{- $params := .Site.Params }}
|
|
{{- range $paramName := $paramNames }}
|
|
{{- with $params }}
|
|
{{- $params = index . (lower $paramName) }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- with $params }}
|
|
{{- . }}
|
|
{{- end }}
|
|
{{- end }} |