hugo-theme-cyberscopes/layouts/shortcodes/hx/button.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 }}