12 lines
263 B
HTML
12 lines
263 B
HTML
{% extends "base.html" %}
|
|
|
|
{% load wagtailcore_tags %}
|
|
|
|
{% block body_class %}template-contentpage{% endblock %}
|
|
|
|
{% block content %}
|
|
{% include 'common/header.html' %}
|
|
<section class="container">
|
|
{% include_block page.body %}
|
|
</section>
|
|
{% endblock %}
|