summaryrefslogtreecommitdiff
path: root/themes/LoveIt/layouts/partials/function/checkbox.html
blob: 2283592b9ab9619b34b6c73c5f8c3ae569eaed14 (plain)
1
2
3
4
5
6
7
8
9
{{- /* Checkbox unchecked */ -}}
{{- $old := `<input disabled="" type="checkbox">` -}}
{{- $new := `<i class="far fa-square fa-fw"></i>` -}}
{{- $content := replace . $old $new -}}

{{- /* Checkbox checked */ -}}
{{- $old = `<input checked="" disabled="" type="checkbox">` -}}
{{- $new = `<i class="far fa-check-square fa-fw"></i>` -}}
{{- return replace $content $old $new -}}