oliverdavies.uk/source/_partials/posts/latest.html.twig

16 lines
440 B
Twig
Raw Normal View History

2017-07-11 00:08:32 +00:00
{% if data.posts and page.url != '/blog' %}
2018-02-13 18:47:15 +00:00
<div class="widget lh-copy">
<h2>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>
2018-05-28 23:33:00 +00:00
<a href="{{ post.url }}" class="link">
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 %}