6 lines
251 B
HTML
6 lines
251 B
HTML
{{- $type := .Get "type" | default "button" -}}
|
|
{{- $name := .Get "name" | default "submit" -}}
|
|
{{- $label := .Get "label" | default (title $name) -}}
|
|
|
|
{{- $params := dict "type" $type "name" $name "label" $label -}}
|
|
{{ partial "hx/button" $params }}
|