aboutsummaryrefslogtreecommitdiffstats
path: root/code/frontpage/layouts/shortcodes/alert.html
diff options
context:
space:
mode:
Diffstat (limited to 'code/frontpage/layouts/shortcodes/alert.html')
-rw-r--r--code/frontpage/layouts/shortcodes/alert.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/code/frontpage/layouts/shortcodes/alert.html b/code/frontpage/layouts/shortcodes/alert.html
new file mode 100644
index 0000000..e2abe8e
--- /dev/null
+++ b/code/frontpage/layouts/shortcodes/alert.html
@@ -0,0 +1,12 @@
+<div class="alert alert-{{ with .Get "context" }}{{.}}{{ else }}doks{{ end }} d-flex" role="alert">
+ <div class="flex-shrink-1 alert-icon">{{ with .Get "icon" }}{{.}} {{ end }}</div>
+ {{ with .Get "text"}}
+ <div class="w-100">{{ . | safeHTML }} </div>
+ {{ else }}
+ {{ with .Inner}}
+ <div class="w-100"> {{ . | markdownify}}</div>
+ {{ else }}
+ {{ errorf "No valid text variable or Inner content given"}}
+ {{ end }}
+ {{ end}}
+</div>