{% for post in paginator.posts %}
{% if post.thumbnail %}
{{ post.title }}
{% endif %}

{{ post.title }}

{% include post_info.html author=post.author date=post.date %}
{% if site.theme_settings.excerpt %}
{% if site.theme_settings.excerpt == "truncate" %} {{ post.content | strip_html | truncate: '250' | escape }} {% else %} {{ post.excerpt | strip_html | escape }} {% endif %}
{% endif %}
{% endfor %}
{% include blog_nav.html %}