{% if post.featured-img %}
{{post.title}}
{% else %}
{% endif %}

{{ post.title | strip_html | truncate: 50 }}

{% assign date_format = site.sleek.date_format | default: "%b %-d, %Y" %}
{% if post.summary %}

{{ post.summary | strip_html | truncatewords:20 }}

{% else %}

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

{% endif %}