camp/content/templates/page.html
2017-12-22 20:08:54 +00:00

20 lines
455 B
HTML

{% extends 'base.html' %}
{% block content %}
{% include "edit.html" with content=content %}
<div class="large-8 medium-8 columns special-column">
<div class="index-text">
<h4>{{content.title}}</h4>
{% if content.header %}
<p>
{{content.formatted_header|safe}}
</p>
{% endif %}
<p>
{{content.formatted_body|safe}}
</p>
{% include "opt.html" with content=content %}
</div>
</div>
{% endblock %}