basicallydan
basicallydan

Reputation: 2142

Jekyll 3.1.0 Generates HTML files instead of folders

When I was using Jekyll 2.x, the folder structure within _blog was like this:

/blog/post1/index.html /blog/post2/index.html

But since upgrading it's like this:

/blog/post1.html /blog/post2.html

So although the permalink setting in _config.yml is permalink: /blog/:title, all the links I use are broken. What's going on? Is there a setting I'm missing?

Upvotes: 0

Views: 80

Answers (1)

David Jacquel
David Jacquel

Reputation: 52809

Permalink config should be permalink: /blog/:title/ with a trailing slash.

Upvotes: 2

Related Questions