Initial Lektor site

This commit is contained in:
Labyricorn Deployment
2026-08-11 19:46:05 -07:00
commit 04faf86f1b
21 changed files with 444 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
{% 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 %}