change templates to match
This commit is contained in:
parent
3c496cd951
commit
bb2e4f14b7
2 changed files with 23 additions and 0 deletions
23
templates/pages/simple_content_page.html
Normal file
23
templates/pages/simple_content_page.html
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{% extends "base.html" %}
|
||||||
|
|
||||||
|
{% load wagtailcore_tags %}
|
||||||
|
|
||||||
|
{% block body_class %}template-contentpage{% endblock %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<section class="bg-primary">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-8 col-lg-offset-2 text-center">
|
||||||
|
<h1 class="section-heading">{{ page.title }}</h1>
|
||||||
|
<hr class="light">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
<section>
|
||||||
|
<div class="container">
|
||||||
|
{{ page.body|richtext }}
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
{% endblock %}
|
Reference in a new issue