I have my blog setup so that it has two custom collections, categories and authors like so:
blog.custom_collections = {
category: {
link: '/categories/{category}.html',
template: '/archive.html'
},
author: {
link: '/authors/{author}.html',
template: '/archive.html'
}
}
Is there a way I can loop through all of my categories and display those in a navigation so I can link to each one? I’m having trouble finding where I can get the list of categories or authors at in order to build this nav.
Thanks!