{% set posts = __SELF__.posts %}
{% for post in posts %}

{{ post.title }}

{% for tag in post.tags %} {{ tag.name }} {% if not loop.last %}, {% endif %} {% endfor %}

{{ str_words(post.content, 50) }}

{% endfor %}