9 lines
No EOL
492 B
HTML
9 lines
No EOL
492 B
HTML
{{ $attributes := slice "background-color" "background-image" "background-size" "background-position" "background-repeat" "transition" "transition-speed" "background-iframe" "background-interactive" "background-video" "background-video-loop" "background-video-muted" }}
|
|
{{ $params := . }}
|
|
<section data-noprocess
|
|
{{- range $attribute := $attributes -}}
|
|
{{- with $params.Get $attribute }} data-{{ $attribute | safeHTMLAttr }}="{{ . }}"{{ end -}}
|
|
{{- end -}}
|
|
>
|
|
{{ .Inner }}
|
|
</section> |