daily listings page and update daily titles

This commit is contained in:
2026-05-04 09:38:41 -07:00
parent 9790042526
commit 3c94a3b8b9
5 changed files with 25 additions and 4 deletions

21
src/daily.njk Normal file
View File

@ -0,0 +1,21 @@
---
title: Day-by-day listings
pagination:
data: collections.daily
size: 30
reverse: true
---
{% css %}
ol {
list-style: none;
text-align: center;
}
{% endcss %}
<ol>
{% for post in pagination.items %}
<li>
<a href="{{ post.url }}">{{ post.data.title }}</a>
</li>
{% endfor %}
</ol>

View File

@ -1,5 +1,5 @@
--- ---
title: Listings for April 29th, 2026 title: April 29th, 2026
--- ---
{% css %}{% include "css/listings.css" %}{% endcss %} {% css %}{% include "css/listings.css" %}{% endcss %}

View File

@ -1,5 +1,5 @@
--- ---
title: Listings for May 1st, 2026 title: May 1st, 2026
--- ---
{% css %}{% include "css/listings.css" %}{% endcss %} {% css %}{% include "css/listings.css" %}{% endcss %}

View File

@ -1,5 +1,5 @@
--- ---
title: Listings for May 2nd, 2026 title: May 2nd, 2026
--- ---
{% css %}{% include "css/listings.css" %}{% endcss %} {% css %}{% include "css/listings.css" %}{% endcss %}

View File

@ -1,5 +1,5 @@
--- ---
title: Listings for May 3rd, 2026 title: May 3rd, 2026
--- ---
{% css %}{% include "css/listings.css" %}{% endcss %} {% css %}{% include "css/listings.css" %}{% endcss %}