summaryrefslogtreecommitdiff
path: root/themes/CodeIT/layouts/partials/function/checkbox.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/CodeIT/layouts/partials/function/checkbox.html')
-rw-r--r--themes/CodeIT/layouts/partials/function/checkbox.html9
1 files changed, 0 insertions, 9 deletions
diff --git a/themes/CodeIT/layouts/partials/function/checkbox.html b/themes/CodeIT/layouts/partials/function/checkbox.html
deleted file mode 100644
index 2283592..0000000
--- a/themes/CodeIT/layouts/partials/function/checkbox.html
+++ /dev/null
@@ -1,9 +0,0 @@
-{{- /* 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 -}}