start9-landing/src/_includes/components/_list-of-posts.njk
2022-07-19 16:25:29 +02:00

5 lines
No EOL
119 B
Text

<ul>
{% for post in collections.posts %}
<li><a href="{{ post.url }}">{{ post.data.title }}</a></li>
{% endfor %}
</ul>