I have blog project. (yep I do!)
Every post belong to a section (a country) within the content/post directory.
So each section is paginated: blog.com/canada/page/1 blog.com/canada/page/2
etc…
page 1 is compiled normally as blog.com/canada/page/1/index.html
but all subsequent pages are compiled as blog.com/canada/page/2 (2 here is a file named after the page number without extension containing the html of the page)
Here’s the content structure
content
└── post
├── canada
│ ├── post-1.md
│ └── post-2.md
├── japan
│ ├── a-post-from-japan.md
│ └── another-post-from-japan.md
└── usa
[...]
I tried with another team than mine, but the problem persisted, hence my posting it here.
Anybody see something I am missing or a known bug I was not able to spot on GitHub?
Here’s the repo if need be.
It looks unstyled and ugly, though. A related tip: Use relURL (or absURL) to construct urls to static resources (CSS etc.). Then you don’t have to worry about … slashes.
I guess it is the url in the section front matter – which I guess is something new (since a few versions back). I assume it is the missing trailing slash in the URL.