From 83283a810ae89dd579e2f76192198f20964b1726 Mon Sep 17 00:00:00 2001 From: danix Date: Sun, 19 Feb 2023 09:46:36 +0100 Subject: [PATCH] forgot to push the dropcap shortcode --- layouts/shortcodes/dropcap.html | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 layouts/shortcodes/dropcap.html diff --git a/layouts/shortcodes/dropcap.html b/layouts/shortcodes/dropcap.html new file mode 100644 index 0000000..25a2e1f --- /dev/null +++ b/layouts/shortcodes/dropcap.html @@ -0,0 +1,14 @@ +{{/* + * The dropcap shortcode: + * + * Usage: + * + * {{< dropcap class="some class" >}} + * your paragraph that will have a drop cap here + * {{< /dropcap >}} + * + */}} + +

+ {{ .Inner }} +

\ No newline at end of file -- 2.20.1