Files
fedilearns/src/daily.njk

22 lines
312 B
Plaintext

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