{% for post in site.posts %} {% assign author = site.data.authors[post.author] %}

{{ post.title }}

{% include share-page.html %}
{% if post.synopsis %}

{{ post.synopsis | strip_html }}

{% else %}

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

{% endif %}
{% endfor %} {% if paginator.total_pages > 1 %}
{% if paginator.previous_page %} Newer Posts {% endif %} {% if paginator.next_page %} Older Posts {% endif %}
{% endif %}