forked from goffee/core
6 lines
295 B
HTML
6 lines
295 B
HTML
|
{{define "form_href"}}
|
||
|
<a class="{{if eq .IsButton true}} btn btn-{{.TypeClass}}{{end}} {{if eq .IsDisabled true}}disabled{{end}}"
|
||
|
href="{{.Link}}" {{if eq .IsButton true}}role="button"{{end}} {{if eq .IsDisabled true}}aria-disabled="true"{{end}}>
|
||
|
{{.Text}}
|
||
|
</a>
|
||
|
{{end}}
|