14 lines
276 B
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 %}
|