You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 satır
784B

  1. <button
  2. {{ with .id }}id="{{ . | urlize }}" {{ end }}
  3. {{ with .name }}name="{{ . | safeURL }}" {{ end }}
  4. {{ with .action }}formaction="{{ . | safeURL }}" {{ end }}
  5. {{ with .form }}form="{{ . }}" {{ end }}
  6. {{ with .value }}value="{{ . | safeHTMLAttr }}" {{ end }}
  7. {{ with .target }}formtarget="{{ . }}" {{ end }}
  8. {{ with .tabindex }}tabindex="{{ . }}" {{ end }}
  9. {{ with .onclick }}onclick={{ . | safeJS }} {{ end }}
  10. {{ if in (slice "true" "disabled") .disabled }}disabled {{ end }}
  11. {{ if in (slice "get" "post") .method }}formmethod="{{ .method }}" {{ end }}
  12. class="btn btn-{{ .type | default "default" }}{{ if eq .isghost "true" }} btn-ghost{{ end }}
  13. {{- if eq .isblock "true" }} btn-block{{ end }}
  14. {{- with .class }} {{ . }}{{ end }}"
  15. >{{ .body }}</button>