{% assign featured_posts = site.posts | where: "featured", true %} {% for post in featured_posts %} {% if forloop.first %}

{{ post.title | truncate: 35 }}

{{ post.date | date: '%d %b %Y' }}
{% else %}

{{ post.title | truncate: 35 }}

{{ post.date | date: '%d %b %Y' }}
{% endif %} {% endfor %} {% if featured_posts.size > 1 %}
Previous
Next
{% endif %}