14 lines
317 B
Text
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>
|