oliverdavies.uk/source/_partials/latest-posts.html.twig
Oliver Davies 26506c0778 Spaces
2015-06-16 18:50:03 +01:00

12 lines
307 B
Twig

{% if data.posts %}
<section class="latest-posts">
<h2>Latest Posts</h2>
<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>
{% endif %}