{% for post in site.posts %}
{% if post.image %}
{{ post.title | escape }}
{% endif %}
{{ post.excerpt | strip_html | xml_escape | truncatewords: site.excerpt_length }} {% assign excerpt_word_count = post.excerpt | number_of_words %} {% if post.content != post.excerpt or excerpt_word_count > site.excerpt_length %} [Read More] {% endif %}
{% if post.tags.size > 0 %}
Tags: {% if site.link-tags %} {% for tag in post.tags %} {{ tag }} {% endfor %} {% else %} {{ post.tags | join: ", " }} {% endif %}
{% endif %}
{% endfor %}