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/section_index_page.html

25 lines
493 B
HTML
Raw Normal View History

2016-11-24 21:44:08 +00:00
{% extends "base.html" %}
{% load wagtailcore_tags %}
{% block body_class %}template-indexpage{% endblock %}
{% block content %}
2016-12-19 18:50:39 +00:00
{% include 'common/header.html' %}
2016-11-25 21:59:56 +00:00
{% if page.intro %}
<section>
<div class="container">
{{ page.intro|richtext }}
</div>
</section>
{% endif %}
{% if not page.hide_list %}
<section>
<div class="container">
<div class="row no-gutter">
</div>
</div>
</section>
{% endif %}
2016-11-24 21:44:08 +00:00
{% endblock %}