symposion_app/pinaxcon/templates/flatpages/default.html

12 lines
271 B
HTML
Raw Normal View History

2018-10-21 11:45:36 +13:00
{% extends "site_base.html" %}
2017-10-16 21:59:19 +11:00
2018-07-01 22:25:56 +12:00
{% block head_title %}{{ flatpage.title }}{% endblock head_title %}
2017-10-16 21:59:19 +11:00
2017-10-16 21:53:18 +11:00
{% block content %}
2018-10-21 11:45:36 +13:00
<div class="row">
2023-04-20 15:33:42 +10:00
<div class="col-12 content text-page" style="max-width: 45rem">
2018-10-21 11:45:36 +13:00
{{ flatpage.content }}
</div>
</div>
2017-10-16 21:53:18 +11:00
{% endblock content %}