From 6ee872469f77b8451330cbbb68d63264fa19d4cf Mon Sep 17 00:00:00 2001 From: Maxim Stewart Date: Sat, 31 Oct 2020 17:28:37 -0500 Subject: [PATCH] Updated react example --- src/core/templates/layout.html | 4 +++- src/core/templates/react-page.html | 20 ++++++++++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 src/core/templates/react-page.html diff --git a/src/core/templates/layout.html b/src/core/templates/layout.html index e8dd185..3b78510 100644 --- a/src/core/templates/layout.html +++ b/src/core/templates/layout.html @@ -82,8 +82,10 @@ - + + + {% block body_scripts_additional %} {% endblock body_scripts_additional%} {% endblock %} diff --git a/src/core/templates/react-page.html b/src/core/templates/react-page.html new file mode 100644 index 0000000..68248a4 --- /dev/null +++ b/src/core/templates/react-page.html @@ -0,0 +1,20 @@ +{% extends "layout.html" %} + +{% block body_header_additional %} +{% endblock body_header_additional %} + +{% block body_content %} +
+
+{% endblock body_content %} + + +{% block body_footer_additional %} +{% endblock body_footer_additional %} + +{% block body_scripts_additional %} + + + + +{% endblock body_scripts_additional %}