We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
There is a tiny bug with pagination.
Issue: When having more than 2 pages, the pagination shows two "newer posts" links and two "older posts" links.
Proposed Solution: Update pagination.html to:
<div class="pagination"> <h4> {% if paginator.previous_page %} <a href="{{site.baseurl}}{{ paginator.previous_page_path }}" class="previous">Newer Posts</a> {% endif %} {% if paginator.next_page %} <a href="{{site.baseurl}}{{ paginator.next_page_path }}" class="next">Older Posts</a> {% endif %} </h4> </div>
The text was updated successfully, but these errors were encountered:
Merge pull request #35 from jose-zama/master
07bb6ad
Fixes #34 #36
That's a regression! Well spotted! 😄
Sorry, something went wrong.
No branches or pull requests
Hello,
There is a tiny bug with pagination.
Issue: When having more than 2 pages, the pagination shows two "newer posts" links and two "older posts" links.
Proposed Solution: Update pagination.html to:
The text was updated successfully, but these errors were encountered: