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

16 lines
421 B
Twig
Raw Normal View History

2017-07-11 00:08:32 +00:00
{% if data.posts and page.url != '/blog' %}
2017-09-04 16:55:53 +00:00
<div class="lh-copy">
<h2>Latest blog posts</h2>
2017-07-11 00:08:32 +00:00
2017-11-09 22:44:30 +00:00
<ul class="bullets">
2017-09-04 16:55:53 +00:00
{% for post in data.posts|slice(0, site.latest_posts) %}
<li>
<a href="{{ post.url }}">
{{ post.title }}
</a>
</li>
{% endfor %}
</ul>
2017-07-11 00:08:32 +00:00
</div>
{% endif %}