Files
labyricorn-site/templates/page.html
T
Labyricorn 9e3f448459
Deploy production / deploy (push) Successful in 23s
Add privacy disclosure page
2026-08-23 18:03:15 -07:00

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 %}