{% for post in paginator.posts %}
{% if site.data.settings.blog.show_thumbnails %}
{% if post.image.thumb %} {% capture image_path %}{{site.blog_images_dir}}thumbs/{{post.image.thumb}}{% endcapture %} {% capture full_path %}/{{site.blog_images_dir}}thumbs/{{post.image.thumb}}{% endcapture %} {% responsive_image_block %} template: _includes/thumb.html path: {{ image_path }} fullpath: {{ full_path }} {% if post.title %} title: {{ post.title | slugify: "ascii"}} alt: {{ post.title | slugify: "ascii"}} {% endif %} {% endresponsive_image_block %} {% elsif post.image.name %} {% capture image_path %}{{site.blog_images_dir}}{{post.image.name}}{% endcapture %} {% capture full_path %}/{{site.blog_images_dir}}{{post.image.name}}{% endcapture %} {% responsive_image_block %} template: _includes/thumb.html path: {{ image_path }} fullpath: {{ full_path }} {% if post.title %} title: {{ post.title | slugify: "ascii"}} alt: {{ post.title | slugify: "ascii"}} {% endif %} {% endresponsive_image_block %} {% elsif post.image.path %} {% capture image_path %}{{post.image.path | remove_first: "/" }}{% endcapture %} {% capture full_path %}{{post.image.path}}{% endcapture %} {% responsive_image_block %} template: _includes/thumb.html path: {{ image_path }} fullpath: {{ full_path }} {% if post.title %} title: {{ post.title | slugify: "ascii"}} alt: {{ post.title | slugify: "ascii"}} {% endif %} {% endresponsive_image_block %} {% else %} {{post.title}} {% 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 %}