From 062805214038679b357e626120449d0966a74d80 Mon Sep 17 00:00:00 2001 From: Sonny Date: Sun, 26 Jul 2020 22:09:49 +0200 Subject: [PATCH] Add a textbox component --- .../templates/components/textbox/textbox.html | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/newsreader/templates/components/textbox/textbox.html diff --git a/src/newsreader/templates/components/textbox/textbox.html b/src/newsreader/templates/components/textbox/textbox.html new file mode 100644 index 0000000..3a04797 --- /dev/null +++ b/src/newsreader/templates/components/textbox/textbox.html @@ -0,0 +1,13 @@ +
+ {% if title %} +

{{ title }}

+ {% endif %} + + {% if body %} +

{{ body }}

+ {% endif %} + + {% if footer %} + + {% endif %} +