diff --git a/pinaxcon/templates/pinax/pages/page_detail.html b/pinaxcon/templates/pinax/pages/page_detail.html new file mode 100644 index 0000000000000000000000000000000000000000..8f48b149d4734d1484634d11bcf64f968df9108e --- /dev/null +++ b/pinaxcon/templates/pinax/pages/page_detail.html @@ -0,0 +1,27 @@ +{% extends "site_base.html" %} + +{% load sitetree %} +{% load i18n %} + +{% block body_class %}cms-page{% endblock %} + +{% block head_title %}{{ page.title }}{% endblock %} + +{% block breadcrumbs %}{% sitetree_breadcrumbs from "main" %}{% endblock %} + +{% block body %} + {% if editable %} +
+ + + Edit this page + +
+ {% endif %} +

{{ page.title }}

+ +
+ {{ page.body_html|safe }} +
+ +{% endblock %}