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

19 lines
693 B
Twig
Raw Normal View History

2017-07-11 00:08:32 +00:00
{% if data.posts and page.url != '/blog' %}
<div class="latest-posts panel panel-default">
<div class="latest-posts__heading panel-heading">Latest blog posts</div>
{% for post in data.posts|slice(0, site.latest_posts) %}
<div class="post panel-block">
<div>
2017-07-11 00:08:32 +00:00
<span class="post__title">
<a href="{{ post.url }}">
{{ post.title }}
</a>
</span> -
<span class="post__date">{{ post.date|date(site.default_date_format) }}</span>
</div>
</div>
{% endfor %}
2017-07-11 00:08:32 +00:00
</div>
{% endif %}