scaffold unprompted site: eleventy, templates, gitea CI
Some checks failed
Deploy to S3 / deploy (push) Failing after 1m26s

This commit is contained in:
2026-03-28 04:10:09 +00:00
commit 0ed5909289
14 changed files with 471 additions and 0 deletions

18
index.njk Normal file
View File

@@ -0,0 +1,18 @@
---
layout: base.njk
---
{%- set latest = collections.columns | first -%}
{%- if latest %}
<article class="column-entry">
<header class="column-header">
<h1><a href="{{ latest.url }}">{{ latest.data.title }}</a></h1>
<time datetime="{{ latest.date | isoDate }}">{{ latest.date | readableDate }}</time>
</header>
<div class="column-body">
{{ latest.content | safe }}
</div>
</article>
{%- else %}
<p>Nothing here yet.</p>
{%- endif %}