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

11 lines
344 B
Twig
Raw Normal View History

2015-03-31 23:03:45 +00:00
{% if data.posts %}
2015-06-06 16:21:24 +00:00
<section class="latest-posts">
<h2>Latest Posts</h2>
2015-03-31 23:03:45 +00:00
2015-06-06 16:21:24 +00:00
<ul>
{% for post in data.posts | slice(0,5) %}
<li{% if page.url == post.url %} class="active"{% endif %}><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</section>
2015-03-31 23:03:45 +00:00
{% endif %}