1
Fork 0

pull in old index content

This commit is contained in:
Jake Howard 2016-11-25 21:59:56 +00:00
parent 2a39dece31
commit 3ad917d8af

View file

@ -5,7 +5,29 @@
{% block body_class %}template-indexpage{% endblock %}
{% block content %}
<h1>{{ page.title }}</h1>
<div class="intro">{{ page.intro|richtext }}</div>
<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 %}