{% for post in paginator.posts %}
{% if site.data.settings.blog.show_thumbnails %}
{% if post.image.thumb %} {% elsif post.image.name %} {% else %} {% endif %}

{{ post.title}}

{{ post.date | date: "%A, %B %-d, %Y"}}

{{ post.content | strip_html | truncatewords:30 }}

{% else %}

{{ post.title}}

{{ post.date | date: "%A, %B %-d, %Y"}}

{{ post.content | strip_html | truncatewords:30 }}

{% endif %}
{% endfor %}