Hi!
I have posts under ./posts directory. I like /posts/ page very much, but I’d like it to be served at /.
I tried adding _index.md to ./posts, with url: /. It doesn’t work reliably (as if the outcome depends on the order individual pages are being rendered).
Another workaround I attempted was to create a custom layout file for the root page with the following code {{ with .GetPage “/posts” }}{{ .Render “list” }}{{ end }}. The catch though is that the theme I’m using renders canonical urls in pages, resulting in the root page telling that its canonical url is /posts.
Is there a better way to remap a branch bundle to a different URL?