Implement repository-driven theme rendering

This commit is contained in:
root
2026-07-23 17:49:10 -07:00
parent 68d76a59df
commit 884d182c86
32 changed files with 3040 additions and 1417 deletions
@@ -0,0 +1,9 @@
<article class="content-grid">
<aside><h2>Contents</h2><ol>{% for heading in item.tableOfContents %}<li><a href="#{{ heading.id | escape }}">{{ heading.text | escape }}</a></li>{% endfor %}</ol></aside>
<div>
<p class="eyebrow">{{ item.artifactType | escape }}</p>
<h1>{{ item.title | escape }}</h1>
<p class="lede">{{ item.summary | escape }}</p>
<div class="prose">{{ item.content | safe_content }}</div>
</div>
</article>