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
2016-12-19 18:50:39 +00:00

24 lines
493 B
HTML

{% extends "base.html" %}
{% load wagtailcore_tags %}
{% block body_class %}template-indexpage{% endblock %}
{% block content %}
{% include 'common/header.html' %}
{% 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 %}
{% endblock %}