From 22f1890a9beab11d8cfdceba3a4d66f8bbbb468c Mon Sep 17 00:00:00 2001 From: Ian Lewis Date: Fri, 29 Mar 2019 22:40:11 -0400 Subject: Initial commit --- layouts/shortcodes/blocks/lead.html | 11 +++++++++++ layouts/shortcodes/blocks/section.html | 12 ++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 layouts/shortcodes/blocks/lead.html create mode 100644 layouts/shortcodes/blocks/section.html (limited to 'layouts/shortcodes') diff --git a/layouts/shortcodes/blocks/lead.html b/layouts/shortcodes/blocks/lead.html new file mode 100644 index 000000000..7825eac70 --- /dev/null +++ b/layouts/shortcodes/blocks/lead.html @@ -0,0 +1,11 @@ +{{ $col_id := .Get "color" | default .Ordinal }} +{{ $height := .Get "height" | default "auto" }} +{{/* Height can be one of: auto, min, med, max, full. */}} + +
+
+ + {{ .Inner }} + +
+
diff --git a/layouts/shortcodes/blocks/section.html b/layouts/shortcodes/blocks/section.html new file mode 100644 index 000000000..de7e6c8f1 --- /dev/null +++ b/layouts/shortcodes/blocks/section.html @@ -0,0 +1,12 @@ +{{ $col_id := .Get "color" | default .Ordinal }} +{{ $height := .Get "height" | default "auto" }} + +
+
+
+
+ {{ .Inner }} +
+
+
+
-- cgit v1.2.3