20 lines
583 B
HTML
20 lines
583 B
HTML
{% extends "base.html" %}
|
|
{% block body %}
|
|
<article>
|
|
<header class="hero compact entry-hero">
|
|
<div class="shell narrow">
|
|
<p class="eyebrow">{{ this.kicker }} — {{ this.date|dateformat('YYYY.MM.dd') }}</p>
|
|
<h1>{{ this.title }}</h1>
|
|
<p class="dek">{{ this.summary }}</p>
|
|
</div>
|
|
</header>
|
|
<section class="content-section">
|
|
<div class="shell prose">
|
|
{{ this.body }}
|
|
{% if this.external_url %}<p><a class="button-link" href="{{ this.external_url }}">Visit project →</a></p>{% endif %}
|
|
</div>
|
|
</section>
|
|
</article>
|
|
{% endblock %}
|
|
|