diff --git a/templates/page.html b/templates/page.html
index 852b3f8..640308d 100644
--- a/templates/page.html
+++ b/templates/page.html
@@ -2,8 +2,8 @@
{% block styles %}
{% endblock %}
diff --git a/templates/shortcodes/layout_centered_content.html b/templates/shortcodes/layout_centered_content.html
new file mode 100644
index 0000000..87af085
--- /dev/null
+++ b/templates/shortcodes/layout_centered_content.html
@@ -0,0 +1,9 @@
+
\ No newline at end of file
diff --git a/templates/shortcodes/layout_centered_img.html b/templates/shortcodes/layout_centered_img.html
new file mode 100644
index 0000000..7e6e20d
--- /dev/null
+++ b/templates/shortcodes/layout_centered_img.html
@@ -0,0 +1,9 @@
+
\ No newline at end of file
diff --git a/templates/shortcodes/logos.html b/templates/shortcodes/layout_logos.html
similarity index 60%
rename from templates/shortcodes/logos.html
rename to templates/shortcodes/layout_logos.html
index 0d75796..adb4f92 100644
--- a/templates/shortcodes/logos.html
+++ b/templates/shortcodes/layout_logos.html
@@ -1,4 +1,7 @@
-
+
+
{% if title %}
{{ title}}
{% endif %}
+
{{ body | markdown | safe }}
+
\ No newline at end of file
diff --git a/templates/shortcodes/layout_separator.html b/templates/shortcodes/layout_separator.html
new file mode 100644
index 0000000..e002a68
--- /dev/null
+++ b/templates/shortcodes/layout_separator.html
@@ -0,0 +1,7 @@
+{% if separator_title %}
+
+{% set separator_rm_bg = true %}
+
+{% include "includes/separator_design.html" %}
+
+{% endif %}
\ No newline at end of file
diff --git a/templates/shortcodes/layout_text_img.html b/templates/shortcodes/layout_text_img.html
new file mode 100644
index 0000000..26eaf05
--- /dev/null
+++ b/templates/shortcodes/layout_text_img.html
@@ -0,0 +1,45 @@
+
+
+ {% if textleft %}
+
+
+
+ {{ body | markdown | safe }}
+
+
+
+
+
+
+
+ {% if src %}
+
+ {% endif %}
+
+
+
+
+
+ {% else %}
+
+
+
+
+
+ {% if src %}
+
+ {% endif %}
+
+
+
+
+
+
+
+ {{ body | markdown | safe }}
+
+
+
+ {% endif %}
+
+
\ No newline at end of file