symposion_app/pinaxcon/templates/flatpages/default.html

12 lines
271 B
HTML
Raw Normal View History

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