summaryrefslogtreecommitdiff
path: root/themes/LoveIt/layouts/partials/function
diff options
context:
space:
mode:
authorChristoph Cullmann <cullmann@kde.org>2022-10-21 21:01:11 +0200
committerChristoph Cullmann <cullmann@kde.org>2022-10-21 21:01:11 +0200
commit582a8a33aff644a6b07534aaf677973abc6f154c (patch)
tree069a34670b1b91041ef9f3fcb73192dd05c60963 /themes/LoveIt/layouts/partials/function
parent038eabdda56dbfdbbba4328ac035cc4d77e8d80d (diff)
use different theme that is a lot slimer
Diffstat (limited to 'themes/LoveIt/layouts/partials/function')
-rw-r--r--themes/LoveIt/layouts/partials/function/checkbox.html9
-rw-r--r--themes/LoveIt/layouts/partials/function/content.html23
-rw-r--r--themes/LoveIt/layouts/partials/function/escape.html5
-rw-r--r--themes/LoveIt/layouts/partials/function/fontawesome.html14
-rw-r--r--themes/LoveIt/layouts/partials/function/fraction.html5
-rw-r--r--themes/LoveIt/layouts/partials/function/id.html8
-rw-r--r--themes/LoveIt/layouts/partials/function/path.html3
-rw-r--r--themes/LoveIt/layouts/partials/function/resource.html16
-rw-r--r--themes/LoveIt/layouts/partials/function/ruby.html5
9 files changed, 0 insertions, 88 deletions
diff --git a/themes/LoveIt/layouts/partials/function/checkbox.html b/themes/LoveIt/layouts/partials/function/checkbox.html
deleted file mode 100644
index c94f9a6..0000000
--- a/themes/LoveIt/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" aria-hidden="true"></i>` -}}
-{{- $content := replace . $old $new -}}
-
-{{- /* Checkbox checked */ -}}
-{{- $old = `<input checked="" disabled="" type="checkbox">` -}}
-{{- $new = `<i class="far fa-check-square fa-fw" aria-hidden="true"></i>` -}}
-{{- return replace $content $old $new -}}
diff --git a/themes/LoveIt/layouts/partials/function/content.html b/themes/LoveIt/layouts/partials/function/content.html
deleted file mode 100644
index 250a5b7..0000000
--- a/themes/LoveIt/layouts/partials/function/content.html
+++ /dev/null
@@ -1,23 +0,0 @@
-{{- $content := .Content -}}
-
-{{- if $content -}}
-
- {{- if .Ruby -}}
- {{- $content = partial "function/ruby.html" $content -}}
- {{- end -}}
-
- {{- if .Fraction -}}
- {{- $content = partial "function/fraction.html" $content -}}
- {{- end -}}
-
- {{- if .Fontawesome -}}
- {{- $content = partial "function/fontawesome.html" $content -}}
- {{- end -}}
-
- {{- $content = partial "function/checkbox.html" $content -}}
-
- {{- $content = partial "function/escape.html" $content -}}
-
-{{- end -}}
-
-{{- return $content -}}
diff --git a/themes/LoveIt/layouts/partials/function/escape.html b/themes/LoveIt/layouts/partials/function/escape.html
deleted file mode 100644
index 1ff794f..0000000
--- a/themes/LoveIt/layouts/partials/function/escape.html
+++ /dev/null
@@ -1,5 +0,0 @@
-{{- /* Escape character */ -}}
-{{- /* {?X} -> X */ -}}
-{{- $REin := `\{\?(.)\}` -}}
-{{- $REout := `$1` -}}
-{{- return replaceRE $REin $REout . -}}
diff --git a/themes/LoveIt/layouts/partials/function/fontawesome.html b/themes/LoveIt/layouts/partials/function/fontawesome.html
deleted file mode 100644
index 2e14326..0000000
--- a/themes/LoveIt/layouts/partials/function/fontawesome.html
+++ /dev/null
@@ -1,14 +0,0 @@
-{{- /* Font Awesome */ -}}
-{{- /* :(far fa-circle): -> <i class="far fa-circle fa-fw" aria-hidden="true"></i> */ -}}
-
-{{- $REin := ` (:\([\w- ]+?\):)` -}}
-{{- $REout := `&nbsp;$1` -}}
-{{- $content := replaceRE $REin $REout . -}}
-
-{{- $REin = `(:\([\w- ]+?\):) ` -}}
-{{- $REout = `$1&nbsp;` -}}
-{{- $content = replaceRE $REin $REout . -}}
-
-{{- $REin = `:\(([\w- ]+?)\):` -}}
-{{- $REout = `<i class="$1" aria-hidden="true"></i>` -}}
-{{- return replaceRE $REin $REout $content -}}
diff --git a/themes/LoveIt/layouts/partials/function/fraction.html b/themes/LoveIt/layouts/partials/function/fraction.html
deleted file mode 100644
index 9aa85d0..0000000
--- a/themes/LoveIt/layouts/partials/function/fraction.html
+++ /dev/null
@@ -1,5 +0,0 @@
-{{- /* Fraction */ -}}
-{{- /* [A]/[B] -> <sup>A</sup>/<sub>B</sub> */ -}}
-{{- $REin := `\[(.+?)\]/\[(.+?)\]` -}}
-{{- $REout := `<sup>$1</sup>/<sub>$2</sub>` -}}
-{{- return replaceRE $REin $REout . -}}
diff --git a/themes/LoveIt/layouts/partials/function/id.html b/themes/LoveIt/layouts/partials/function/id.html
deleted file mode 100644
index e84ef9c..0000000
--- a/themes/LoveIt/layouts/partials/function/id.html
+++ /dev/null
@@ -1,8 +0,0 @@
-{{- /* ID */ -}}
-{{- $count := (.Scratch.Get "this").count | default 1 -}}
-{{- $id := printf "id-%d" $count -}}
-{{- $count | add 1 | .Scratch.SetInMap "this" "count" -}}
-{{- with .Content -}}
- {{- dict $id . | dict "data" | dict "config" | merge ($.Scratch.Get "this") | $.Scratch.Set "this" -}}
-{{- end -}}
-{{- return $id -}}
diff --git a/themes/LoveIt/layouts/partials/function/path.html b/themes/LoveIt/layouts/partials/function/path.html
deleted file mode 100644
index ece426f..0000000
--- a/themes/LoveIt/layouts/partials/function/path.html
+++ /dev/null
@@ -1,3 +0,0 @@
-{{- /* https://discourse.gohugo.io/t/how-decode-urls-in-hugo/7549/4 */ -}}
-{{- $URL := . | urlize | urls.Parse -}}
-{{- return $URL.Path -}}
diff --git a/themes/LoveIt/layouts/partials/function/resource.html b/themes/LoveIt/layouts/partials/function/resource.html
deleted file mode 100644
index 2febef3..0000000
--- a/themes/LoveIt/layouts/partials/function/resource.html
+++ /dev/null
@@ -1,16 +0,0 @@
-{{- $resource := 0 -}}
-{{- $url := urls.Parse .Path -}}
-{{- if not $url.Host | and $url.Path | and (strings.HasSuffix $url.Path "/" | not) -}}
- {{- if .Resources -}}
- {{- with .Resources.GetMatch $url.Path -}}
- {{- $resource = . -}}
- {{- end -}}
- {{- end -}}
- {{- if not $resource -}}
- {{- with resources.Get $url.Path -}}
- {{- $resource = . -}}
- {{- end -}}
- {{- end -}}
-{{- end -}}
-
-{{- return $resource -}}
diff --git a/themes/LoveIt/layouts/partials/function/ruby.html b/themes/LoveIt/layouts/partials/function/ruby.html
deleted file mode 100644
index 49aa35b..0000000
--- a/themes/LoveIt/layouts/partials/function/ruby.html
+++ /dev/null
@@ -1,5 +0,0 @@
-{{- /* Ruby */ -}}
-{{- /* [EN]^(English) -> <strong><ruby>EN<rt>English</rt></ruby></strong> */ -}}
-{{- $REin := `\[(.+?)\]\^\((.+?)\)` -}}
-{{- $REout := `<strong><ruby>$1<rt>$2</rt></ruby></strong>` -}}
-{{- return replaceRE $REin $REout . -}}