{% if paginator.next_page %}
<div class="posts__pagination"> <span class="posts__next">Load More</span> </div>
{% endif %}
{% if paginator.total_pages > 1 %}
<div class=“pagination”>
{% if paginator.previous_page %} <a href="{{ paginator.previous_page_path | relative_url }}"> « Prev </a> {% else %} <span>« Prev</span> {% endif %} {% for page in (1..paginator.total_pages) %} {% if page == paginator.page %} <em>{{ page }}</em> {% elsif page == 1 %} <a href="{{ paginator.previous_page_path | relative_url }}"> {{ page }} </a> {% else %} <a href="{{ site.paginate_path | relative_url | replace: ':num', page }}"> {{ page }} </a> {% endif %} {% endfor %} {% if paginator.next_page %} <a href="{{ paginator.next_page_path | relative_url }}"> Next » </a> {% else %} <span>Next »</span> {% endif %}
</div>
{% endif %}