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 %}