Hello everyone!
I’ve spent two days researching, but haven’t found a working solution. And I was under impression it should be something not very complex. Maybe someone could point me in the right direction.
Inside “content” folder I have a couple of pages and two folders: “posts” and “writing”. The first one holds blog, the second one holds stories. Inside each folder there’s an _index.md, and each has its dedicated folder with list.html in layouts. In config.toml I have the following taxonomies:
[taxonomies]
tag = “tags”
category = “categories”
series = “series”
Pages that reside in “writing” folder have a “series” field on their front matter. What I need is to group them on their index (list) page by series, so that it looks something like this:
Series 1
– Story 1
– Story 2
– Story 3
Series 2
– Story 4
– Story 5
– Story 6
Is it possible to achieve? How do I a go about doing that? Would be really grateful if someone could explain as if I’m dumb (which I probably am). I’ll handle html/css from there.
Thank you in advance!