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/_partials/posts/latest.html.twig

16 lines
432 B
Twig
Raw Normal View History

2017-07-11 00:08:32 +00:00
{% if data.posts and page.url != '/blog' %}
2019-01-05 00:08:45 +00:00
<div class="markup">
<h2 class="mb-2">Latest Blog Posts</h2>
2017-07-11 00:08:32 +00:00
2018-05-28 23:33:00 +00:00
<ul class="pl-4">
2017-09-04 16:55:53 +00:00
{% for post in data.posts|slice(0, site.latest_posts) %}
<li>
2019-01-03 01:32:59 +00:00
<a href="{{ post.url }}">
2018-11-20 01:28:08 +00:00
{{- post.title -}}
2017-09-04 16:55:53 +00:00
</a>
</li>
{% endfor %}
</ul>
2017-07-11 00:08:32 +00:00
</div>
{% endif %}