mirror of
https://codeberg.org/angestoepselt/homepage.git
synced 2025-05-24 14:46:16 +00:00
13 lines
215 B
Text
13 lines
215 B
Text
---
|
|
layout: layouts/page.njk
|
|
---
|
|
|
|
<ol reversed class="post-list">
|
|
{% for post in collections.post | reverse %}
|
|
<li>
|
|
<a class="post-card" href="{{ post.url }}">
|
|
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ol>
|