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
Related to #10.
Supporting pagination would be a nice feature.
Some thoughts:
PER_PAGE
/page/{page}
/pages/{page}
mv
index.html
The text was updated successfully, but these errors were encountered:
Would need to consider how the templating would work too.
As inspiration, my blog looks like:
{{#pagination}} <div style="text-align: center;"> <small> {{#previous}} <a class="js-newer" href="/page/{{previous}}">← Previous page</a> {{/previous}} {{#previous}}{{#next}} • {{/next}}{{/previous}} {{#next}} <a class="js-older" href="/page/{{next}}">Next page →</a> {{/next}} </small> </div> <hr> <div style="text-align: center;"> <small>Page {{current}} of {{total}}</small> </div> {{/pagination}}
https://github.com/Pinjasaur/blot-theme-jot/blob/fba89a39137a77b45b1c8b71e90672faa2ec003d/entries.html#L24-L44
Sorry, something went wrong.
cc @mfossen
maybe could use https://github.com/CloudCannon/pagebreak?
No branches or pull requests
Related to #10.
Supporting pagination would be a nice feature.
Some thoughts:
PER_PAGE
as a envar config, default perhaps 10 and can scale indefinitely high for "no pagination"?/page/{page}
vs/pages/{page}
?mv
-ed toindex.html
?The text was updated successfully, but these errors were encountered: