--- layout: page title: My website subtitle: This is where I will tell my friends way too much about me ---
{% for post in paginator.posts %}

{{ post.title }}

{% if post.subtitle %}

{{ post.subtitle }}

{% endif %}
{% if post.content contains site.excerpt_separator %} {{ post.excerpt | strip_html | xml_escape }} [Read More] {% else %} {% assign cleaned_content = post.content | strip_html | xml_escape %} {% assign truncated_content = cleaned_content | truncatewords: 50 %} {% if truncated_content == cleaned_content %} {{ cleaned_content }} {% else %} {{ truncated_content }} [Read More] {% endif%} {% 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 %}
{% if paginator.total_pages > 1 %} {% endif %}