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>
|
||||
Reference in New Issue
Block a user