8 {% assign num_posts = 5 %}
9 {% for post in site.posts %}
10 {% assign num_posts = num_posts | minus: 1 %}
11 {% if num_posts >= 0 %}
12 <header class="subtitle">
13 {% include post-header.html item=post %}
14 <h1><a href="{{ post.url }}">{{ post.title }}</a></h1>