This repository has been archived on 2024-11-25. You can view files and clone it, but cannot push or open issues or pull requests.

10 lines
445 B
HTML
Raw Permalink Normal View History

2023-10-12 14:01:05 +02:00
{{- /* Checkbox unchecked */ -}}
{{- $old := `<input disabled="" type="checkbox">` -}}
{{- $new := dict "Class" "fa-regular fa-square fa-fw" | partial "plugin/icon.html" -}}
{{- $content := replace . $old $new -}}
{{- /* Checkbox checked */ -}}
{{- $old = `<input checked="" disabled="" type="checkbox">` -}}
{{- $new := dict "Class" "fa-regular fa-check-square fa-fw" | partial "plugin/icon.html" -}}
{{- return replace $content $old $new -}}