jekyll-paginate-v2
jekyll-paginate-v2 copied to clipboard
Pagination Generator for Jekyll 3 (enhanced replacement for the old built-in jekyll-paginate gem) ⛺
I have a category with an `index.html`, here's my directory structure ``` root/ |- _config.yml |- cars/ |- index.html |- _posts/ ``` and the `index.html` front matter looks like this...
Hi – First of all, thank you for taking the time to build this. I found it very useful. I'm sorry to open this as an issue, since it's more...
Hello! This project is great. Thank you for working on it and maintaining it! I did run across a potential issue while using Autopages. The documentation says to omit any...
In order to keep my jekyll site folder not bloated, i organize them in folders, now that my `**layouts_dir**` variable in _config.yml has changed location, autopages are not picking it...
``` --- title: Some Foo tags: [tagA] categories: [categoryA] hidden: true --- ``` Will create the /tag/tagA and /category/categoryA pages, even if these tags and categories contain only hidden posts....
And I use `minimal-mistakes-jekyll` as theme My `_config.ymkl` ```yml pagination: # jekyll-paginate-v2 enabled: true debug: true # open debug per_page: 5 permalink: '/blog/page/:num/' sort_field: 'date' sort_reverse: true trail: before: 2...
After ```bash bundle exec jekyll serve```, upon inspecting the project page, the project page can display _projects correctly (the front matters are used correctly), **but the html code is totally...
In the document, it says that `sort_reverse` option will be set to `true` by default. However, it is actually set to `false`. ``` > gem list jekyll-paginate-v2 (3.0.0) ```
Hi, I updated the logic in autopages to properly support custom collections in a very natural way. * Completely re-done autopage logic to be simpler and less complex, but at...
I believe this is a typo in the code, you mean to add the default extension when the url doesn't include a `.` i.e. is extensionless. This bug drove me...