--- title: Blog pagestyle: posts layout: default --- {% for post in paginator.posts %}

{{ post.title }} {% if post.tags.size > 0 %}

    {% for post_tag in post.tags %} {% assign tag = site.data.tags[post_tag] %} {% if tag %}
  1. {{ tag.name }}
  2. {% endif %} {% endfor %}
{% endif %}

{{ post.excerpt }}
{% endfor %}