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

13 lines
263 B
HTML
Raw Permalink Normal View History

2016-11-24 21:44:08 +00:00
{% extends "base.html" %}
{% load wagtailcore_tags %}
2016-11-28 21:45:45 +00:00
{% block body_class %}template-contentpage{% endblock %}
2016-11-24 21:44:08 +00:00
{% block content %}
2016-12-25 15:35:38 +00:00
{% include 'common/header.html' %}
2016-12-19 18:50:39 +00:00
<section class="container">
{% include_block page.body %}
2016-11-28 21:45:45 +00:00
</section>
2016-11-24 21:44:08 +00:00
{% endblock %}