Posts
{{ content }}
{% comment %}
Here is the main paginator logic called.
All calls to site.posts should be replaced by paginator.posts
{% endcomment %}
{% for post in paginator.posts %}
-
{{ post.date | date: "%b %-d, %Y" }}
{% if post.synopsis %}{{ post.synopsis }}{% endif %}
{% endfor %}
{% comment %}
Showing buttons to move to the next and to the previous list of posts (pager buttons).
Some legacy code (might be useful):
{% if paginator.total_pages > 1 %}
{% endif %}
{% endcomment %}
{% if paginator.page_trail %}
{% endif %}