Changeset - 1506a3e148cb
[Not reviewed]
0 1 0
Luke Hatcher - 12 years ago 2012-07-19 07:08:52
lukeman@gmail.com
update page template
1 file changed with 9 insertions and 8 deletions:
0 comments (0 inline, 0 general)
symposion_project/templates/cms/page_detail.html
Show inline comments
...
 
@@ -7,16 +7,17 @@
 

	
 
{% block head_title %}{{ page.title }}{% endblock %}
 

	
 
{% block page_title %}
 
    {{ page.title }}
 
{% block breadcrumbs %}{% sitetree_breadcrumbs from "main" %}{% endblock %}
 

	
 
{% block body %}
 
    {% if editable %}
 
        <div class="pull-right">
 
            <a href="{% url cms_page_edit page.path %}" class="btn"><i class="icon-pencil icon-large"></i></a>
 
            <a href="{% url cms_page_edit page.path %}" class="btn"><i class="icon-pencil icon-large"></i> Edit this page</a>
 
        </div>
 
    {% endif %}
 
    <h2>{{ page.title }}</h2>
 
    
 
    <div class="page-content">
 
        {{ page.body }}
 
    </div>
 
{% endblock %}
 
{% block breadcrumbs %}{% sitetree_breadcrumbs from "main" %}{% endblock %}
 

	
 
{% block body %}
 
    {{ page.body }}
 
{% endblock %}
...
 
\ No newline at end of file
0 comments (0 inline, 0 general)