leDailySquirrel/index.njk
Dirty REdOG 2e8eb21a03
All checks were successful
Deploy to Cloudflare Pages / publish (push) Successful in 43s
feat: add root homepage to list editions
2026-07-04 18:23:24 -05:00

14 lines
317 B
Text

---
layout: base.njk
title: Le Daily Squirrel
---
<h1>Welcome to Le Daily Squirrel</h1>
<p>Your automated daily newspaper.</p>
<h2>Latest Editions</h2>
<ul>
{%- for post in collections.edition | reverse -%}
<li><a href="{{ post.url }}">{{ post.data.title | default(post.fileSlug) }}</a></li>
{%- endfor -%}
</ul>