18 lines
433 B
HTML
18 lines
433 B
HTML
{% extends "base.html" %}
|
|
{% block body %}
|
|
{% if this._path == '/' %}
|
|
{% include "home.html" %}
|
|
{% else %}
|
|
<section class="hero compact">
|
|
<div class="shell narrow">
|
|
<p class="eyebrow">{{ this.eyebrow }}</p>
|
|
<h1>{{ this.summary }}</h1>
|
|
</div>
|
|
</section>
|
|
<section class="content-section">
|
|
<div class="shell prose">{{ this.body }}</div>
|
|
</section>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|