From 8555cf72dec9321fa010296ce6988cf7b7cf602b Mon Sep 17 00:00:00 2001 From: Ryan Schanzenbacher Date: Sun, 26 Dec 2021 00:30:09 -0500 Subject: convert theme from submodule to regular files --- themes/hugo-coder | 1 - themes/hugo-coder/layouts/shortcodes/notice.html | 12 ++++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) delete mode 160000 themes/hugo-coder create mode 100644 themes/hugo-coder/layouts/shortcodes/notice.html (limited to 'themes/hugo-coder/layouts/shortcodes') diff --git a/themes/hugo-coder b/themes/hugo-coder deleted file mode 160000 index 55b2a15..0000000 --- a/themes/hugo-coder +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 55b2a150f990bc56364dba347bc9acc6aab07be3 diff --git a/themes/hugo-coder/layouts/shortcodes/notice.html b/themes/hugo-coder/layouts/shortcodes/notice.html new file mode 100644 index 0000000..96685d5 --- /dev/null +++ b/themes/hugo-coder/layouts/shortcodes/notice.html @@ -0,0 +1,12 @@ +{{- $type := .Get 0 -}} +{{- $title := .Get 1 | default $type -}} +{{- $inner := .Inner | .Page.RenderString | chomp -}} +{{- $icon := dict "note" "fa-sticky-note" "tip" "fa-lightbulb-o" "example" "fa-file-text" "question" "fa-question" "info" "fa-exclamation-circle" "warning" "fa-exclamation-triangle" "error" "fa-times-circle" -}} +
+
+ {{ i18n $title | default $title | humanize }} +
+
+ {{- $inner -}} +
+
-- cgit v1.2.3