22 lines
877 B
HTML
22 lines
877 B
HTML
{% extends "base.html" %}
|
|
{% from "macros/feed-links.html" import feed_autodiscovery with context %}
|
|
{% block feed_head %}
|
|
{% if this._path == '/' %}{{ feed_autodiscovery('https://www.labyricorn.com/feed.xml', 'https://www.labyricorn.com/rss.xml', 'Labyricorn - Recent Activity') }}{% endif %}
|
|
{% endblock %}
|
|
{% 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>
|
|
{% if this.updated %}<p class="entry-meta">Last updated <time datetime="{{ this.updated }}">{{ this.updated|dateformat('long') }}</time></p>{% endif %}
|
|
</div>
|
|
</section>
|
|
<section class="content-section">
|
|
<div class="shell prose">{{ this.body }}</div>
|
|
</section>
|
|
{% endif %}
|
|
{% endblock %}
|