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

33 lines
738 B
HTML

{% extends "base.html" %}
{% load wagtailcore_tags %}
{% block body_class %}template-indexpage{% endblock %}
{% block content %}
<section class="bg-primary">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 text-center">
<h1 class="section-heading">{{ page.name }}</h1>
<hr class="light">
</div>
</div>
</div>
</section>
{% 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 %}