1
Fork 0
theorangeone.net-legacy/templates/pages/simple_content_page.html

14 lines
276 B
HTML

{% extends "base.html" %}
{% load wagtailcore_tags %}
{% block body_class %}template-contentpage{% endblock %}
{% block content %}
{% include 'common/header' %}
<section>
<div class="container">
{{ page.body|richtext }}
</div>
</section>
{% endblock %}