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/posts/latest.html.twig
2017-09-04 17:55:53 +01:00

16 lines
422 B
Twig

{% if data.posts and page.url != '/blog' %}
<div class="lh-copy">
<h2>Latest blog posts</h2>
<ul class="list pa0">
{% for post in data.posts|slice(0, site.latest_posts) %}
<li>
<a href="{{ post.url }}">
{{ post.title }}
</a>
</li>
{% endfor %}
</ul>
</div>
{% endif %}