diff --git a/layouts/shortcodes/block.html b/layouts/shortcodes/block.html
new file mode 100644
index 0000000..7bd00e7
--- /dev/null
+++ b/layouts/shortcodes/block.html
@@ -0,0 +1,4 @@
+{{- $modifiers := .Get 0 }}
+
+ {{ markdownify .Inner }}
+
\ No newline at end of file
diff --git a/layouts/shortcodes/grid.html b/layouts/shortcodes/grid.html
new file mode 100644
index 0000000..269fd94
--- /dev/null
+++ b/layouts/shortcodes/grid.html
@@ -0,0 +1,5 @@
+{{- $grids := .Get 0 }}
+{{- $modifiers := .Get 1 }}
+
+ {{ .Inner }}
+
\ No newline at end of file
diff --git a/layouts/shortcodes/partial.html b/layouts/shortcodes/partial.html
new file mode 100644
index 0000000..f131b75
--- /dev/null
+++ b/layouts/shortcodes/partial.html
@@ -0,0 +1,2 @@
+{{- $partial := .Get 0 }}
+{{- partial $partial . }}
\ No newline at end of file