camp/content/templates/page.html

20 lines
455 B
HTML
Raw Normal View History

2017-12-18 12:54:04 +00:00
{% extends 'base.html' %}
{% block content %}
2017-12-22 20:08:54 +00:00
{% include "edit.html" with content=content %}
2017-12-18 12:54:04 +00:00
<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>
2017-12-22 20:08:54 +00:00
{% include "opt.html" with content=content %}
2017-12-18 12:54:04 +00:00
</div>
</div>
{% endblock %}