From bb2e4f14b704b6f162ba47fc5add783f358e7c19 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Mon, 28 Nov 2016 21:45:45 +0000 Subject: [PATCH] change templates to match --- .../{common => pages}/section_index_page.html | 0 templates/pages/simple_content_page.html | 23 +++++++++++++++++++ 2 files changed, 23 insertions(+) rename templates/{common => pages}/section_index_page.html (100%) create mode 100644 templates/pages/simple_content_page.html diff --git a/templates/common/section_index_page.html b/templates/pages/section_index_page.html similarity index 100% rename from templates/common/section_index_page.html rename to templates/pages/section_index_page.html diff --git a/templates/pages/simple_content_page.html b/templates/pages/simple_content_page.html new file mode 100644 index 0000000..f716346 --- /dev/null +++ b/templates/pages/simple_content_page.html @@ -0,0 +1,23 @@ +{% extends "base.html" %} + +{% load wagtailcore_tags %} + +{% block body_class %}template-contentpage{% endblock %} + +{% block content %} +
+
+
+
+

{{ page.title }}

+
+
+
+
+
+
+
+ {{ page.body|richtext }} +
+
+{% endblock %}