{% assign words_per_minute = site.words_per_minute | default: 200 %} {% for post in paginator.posts %}
{% if post.cover %}
{% endif %}
{% if post.tags.size > 0 %} {% for tag in post.tags %} {% if forloop.index == post.tags.size %} {{ tag | capitalize }} {% else %} {{ tag | capitalize }} {% endif %} {% endfor %} {% endif %}

{{ post.title }}

{% if post.excerpt %}

{{ post.excerpt | strip_html | truncatewords: 33, "" }}

{% else %}

{{ post.content | strip_html | truncatewords: 33, "" }}

{% endif %}
{% endfor %}