Hi all
Am trying to set up a photo blog for someone, and am having issues with the Bokeh theme displaying theme tags.
Uploading the default routes.yaml results in the tag cards not displaying on the front page.
routes:
/tags/:
template: tags
# data: page.tags # Uncomment to take meta data from the “/tags/” page
/recommendations/:
template: recommend
# data: page.recommendations # Uncomment to take meta data from the “/recommendations/” page
collections:
/:
permalink: /{slug}/
template: index
taxonomies:
tag: /tag/{slug}/
author: /author/{slug}/
It took me more than an hour to work out that the correctly edited version of the routes file looks like this:
routes:
/tags/:
template: tags
data: page.tags
And that having an extra space before the data would make the routes upload fail.
Anyway, having sorted that out, I’ve
- uploaded the correct routes file (like the second code block)
- created a /tags/ page
- set the tags as I want them
- set the featured tag style to cards
- put the featured tag slugs in the box with commas but no spaces
And despite all that, the “Featured Album” front page still ends up blank.
Any suggestions on how I can troubleshoot this further, please?