start9-landing/src/_includes/components/_list-of-posts.njk

5 lines
119 B
Text
Raw Normal View History

2022-07-19 14:25:29 +00:00
<ul>
{% for post in collections.posts %}
<li><a href="{{ post.url }}">{{ post.data.title }}</a></li>
{% endfor %}
</ul>