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
+17
View File
@@ -0,0 +1,17 @@
{% 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 %}