{{ $title := .Get "title" }} {{ $color := .Get "color" | default "#2563eb" }}

{{ $title }}

{{ range $index := (seq 1 10) }} {{ $feature := printf "feature%d" $index }} {{ with $.Get $feature }} {{ $parts := split . "|" }} {{ if ge (len $parts) 2 }}
{{ partial "icons" (dict "name" "check" "color" $color "size" "6") }}

{{ index $parts 0 }}

{{ index $parts 1 }}

{{ end }} {{ end }} {{ end }}