1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
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 %}