Fixed the Blog Archive
I was looking for an old post and found that the paginated list of blog posts didn’t quite contain all the posts I expected. Turns out I introduced an off-by-1 bug there, computing pages for 10
posts per page, but working with all_posts.each_slice(10-1)
, effectively dropping 1 post per page.
Of course my website isn’t unit-tested, so no wonder :)