daily listings page and update daily titles
This commit is contained in:
21
src/daily.njk
Normal file
21
src/daily.njk
Normal 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>
|
||||||
@ -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 %}
|
||||||
|
|
||||||
|
|||||||
@ -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 %}
|
||||||
|
|
||||||
|
|||||||
@ -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 %}
|
||||||
|
|
||||||
|
|||||||
@ -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 %}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user