From f5287a5f1086e3dba49b0c5d8a26abac2d0dcaf5 Mon Sep 17 00:00:00 2001 From: sovanna Date: Fri, 19 Jul 2019 16:08:13 +0200 Subject: [PATCH] refactor(website): Removes old shortcodes --- templates/shortcodes/centercontent.html | 11 ----- templates/shortcodes/centerp.html | 9 ---- templates/shortcodes/herocontent.html | 19 -------- templates/shortcodes/layoutlr1.html | 5 -- templates/shortcodes/layoutsmall.html | 8 ---- templates/shortcodes/textimg.html | 61 ------------------------- 6 files changed, 113 deletions(-) delete mode 100644 templates/shortcodes/centercontent.html delete mode 100644 templates/shortcodes/centerp.html delete mode 100644 templates/shortcodes/herocontent.html delete mode 100644 templates/shortcodes/layoutlr1.html delete mode 100644 templates/shortcodes/layoutsmall.html delete mode 100644 templates/shortcodes/textimg.html diff --git a/templates/shortcodes/centercontent.html b/templates/shortcodes/centercontent.html deleted file mode 100644 index 420b799..0000000 --- a/templates/shortcodes/centercontent.html +++ /dev/null @@ -1,11 +0,0 @@ -
- -
- -

- {{ alt }} -

- -
- -
\ No newline at end of file diff --git a/templates/shortcodes/centerp.html b/templates/shortcodes/centerp.html deleted file mode 100644 index 71c4f45..0000000 --- a/templates/shortcodes/centerp.html +++ /dev/null @@ -1,9 +0,0 @@ -
- {% if markdown %} - {{ body | markdown | safe}} - {% elif safe %} - {{ body | safe }} - {% else %} - {{ body }} - {% endif %} -
\ No newline at end of file diff --git a/templates/shortcodes/herocontent.html b/templates/shortcodes/herocontent.html deleted file mode 100644 index fd2ab10..0000000 --- a/templates/shortcodes/herocontent.html +++ /dev/null @@ -1,19 +0,0 @@ -
- -
- -
- -
- -

{{ title }}

- - - -
- -
- -
- -
\ No newline at end of file diff --git a/templates/shortcodes/layoutlr1.html b/templates/shortcodes/layoutlr1.html deleted file mode 100644 index d74f50b..0000000 --- a/templates/shortcodes/layoutlr1.html +++ /dev/null @@ -1,5 +0,0 @@ -
- - {{ body | safe }} - -
diff --git a/templates/shortcodes/layoutsmall.html b/templates/shortcodes/layoutsmall.html deleted file mode 100644 index 63b520a..0000000 --- a/templates/shortcodes/layoutsmall.html +++ /dev/null @@ -1,8 +0,0 @@ -
- -
-
{{ title }}
- {{ body | markdown | safe }} -
- -
diff --git a/templates/shortcodes/textimg.html b/templates/shortcodes/textimg.html deleted file mode 100644 index ed4c96f..0000000 --- a/templates/shortcodes/textimg.html +++ /dev/null @@ -1,61 +0,0 @@ -
- - {% if bodyleft %} - -
- - {% if md %} - - {{ body | markdown | safe }} - - {% else %} - - {{ body | safe }} - - {% endif %} - -
- -
- -
- - {% if src %} - {{ alt }} - {% endif %} - -
- -
- - {% else %} - -
- -
- - {% if src %} - {{ alt }} - {% endif %} - -
- -
- -
- - {% if md %} - - {{ body | markdown | safe }} - - {% else %} - - {{ body | safe }} - - {% endif %} - -
- - {% endif %} - -
\ No newline at end of file