leDailySquirrel/index.njk

15 lines
317 B
Text
Raw Normal View History

---
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>