I’ve compiled my site and uploaded to S3. In my config.toml I have the permalinks configured like this:
[permalinks] page = "/:title/index.html" post = "/:year/:month/:day/:filename/index.html"
Unfortunately my about.md page (locate at /about/about.md) isn’t being linked correctly. Here’s the menu entry:
[[menu.main]] identifier = "about" name = "about" url = "/about/index.html" weight = 1
The links render like this:
"https://www.countzer0.com/about/"
I need to render absolute URL with the index.html in my menu. Is there a flag I’m missing or a setting?