1
Fork 0

change templates to match

This commit is contained in:
Jake Howard 2016-11-28 21:45:45 +00:00
parent 3c496cd951
commit bb2e4f14b7
2 changed files with 23 additions and 0 deletions

View 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 %}