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