Created
May 21, 2015 17:48
-
-
Save villanuv/a735dc7dee085bdb21f1 to your computer and use it in GitHub Desktop.
For QDL Tumblr Post #3 Pt.2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% if totalPages == 0 or totalPages == 1 %} | |
{% assign startNum = 1 %} | |
{% assign endNum = collection.products_count %} | |
{% elsif current_page < totalPages %} | |
{% assign endNum = current_page | times:paginate.page_size %} | |
{% assign startNum = endNum | minus:paginate.page_size | plus: 1 %} | |
{% elsif current_page == totalPages %} | |
{% assign endNum = collection.products_count %} | |
{% assign startNum = current_page | minus: 1 | times:paginate.page_size | plus: 1 %} | |
{% endif %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment