--- layout: default paginate: collection: posts per_page: 4 limit: false --- {% for post in paginator.posts %}
{% if post.author %}

{{post.author}}

{% endif %} {{ post.date | date: "%b %-d, %Y" }}

{{ post.title }}

{% if post.image %}

{% endif %}

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

Continue Reading...

{% endfor %} {% if paginator.total_pages > 1 %}
{% if paginator.previous_page %} Previous {% endif %} {% if paginator.next_page %} Next {% endif %}
{% endif %}