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

24 lines
527 B
HTML
Raw 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-11-25 21:59:56 +00:00
<section class="bg-primary">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 text-center">
2016-11-26 13:00:52 +00:00
<h1 class="section-heading">{{ page.title }}</h1>
2016-11-25 21:59:56 +00:00
<hr class="light">
</div>
</div>
</div>
</section>
2016-11-28 21:45:45 +00:00
<section>
<div class="container">
{{ page.body|richtext }}
</div>
</section>
2016-11-24 21:44:08 +00:00
{% endblock %}