54 lines
1.2 KiB
HTML
54 lines
1.2 KiB
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
{% if MINIMAL == True %}
|
|
{% include 'include/minimal_homepage.html' %}
|
|
|
|
{% else%}
|
|
|
|
{% if BANNER == True %}
|
|
<!-- Banner -->
|
|
<section id="banner">
|
|
<div class="content">
|
|
<header>
|
|
<h1>{{ TAGLINEHEAD }}</h1>
|
|
{% if TAGLINESUBHEAD %}
|
|
<p>{{ TAGLINESUBHEAD }}</p>
|
|
{% endif %}
|
|
</header>
|
|
<p>{{ TAGLINE }}</p>
|
|
<ul class="actions">
|
|
<li><a href="{{ BANNERLINK }}" class="button big">Learn More</a></li>
|
|
</ul>
|
|
</div>
|
|
<span class="image object">
|
|
<img src="{{ BANNERIMAGE }}" alt="" />
|
|
</span>
|
|
</section>
|
|
{% endif %}
|
|
|
|
{% if CORNERSTONE_CONTENT == True %}
|
|
<!-- Cornerstone Pages -->
|
|
<section id="cornerstone_pages">
|
|
{% include 'include/cornerstone.html' %}
|
|
<br />
|
|
<br />
|
|
</section>
|
|
{% endif %}
|
|
|
|
{% if NEWSLETTER %}
|
|
<section id="banner">
|
|
{% include 'include/newsletter.html' %}
|
|
|
|
</section>
|
|
{% endif %}
|
|
|
|
<section>
|
|
{% block content_title %}
|
|
<header class="major">
|
|
<h2>Articles</h2>
|
|
</header>
|
|
{% endblock %}
|
|
{% include 'include/paginated_posts.html' %}
|
|
</section><!-- /#content -->
|
|
{% endif %}
|
|
{% endblock content %}
|