Hey folks, I’m attempting to get custom_collections
to play nice with a hash of authors in a blog post frontmatter. I’d like it behave like tags
, but that’s not happening. Maybe I’m missing something.
In some_post.html.md.erb
:
---
author:
- ben
- jerry
---
In config.rb
:
blog.custom_collections = {
author: {
link: "blog/author/{author}.html",
template: "blog/templates/author.html",
},
}
Anyone have any ideas?