This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/source/_includes/latest-posts.html.twig

6 lines
190 B
Twig

<div class="list-group">
{% for post in data.posts[0:number_of_posts|default(5)] %}
<a href="{{ post.url }}" class="list-group-item">{{ post.title }}</a>
{% endfor %}
</div>