@carmen where does the Selmer variable sidebar-pages come from?
I see the :navbar?
docs, but I'm wondering where in the code this happens
oh, I see it's in a the cryogen-core project
Any page that doesn't have :navbar? true
will go into sidebar-pages :)
ok, how can I put static resources into my site root, like a robots.txt file?
List them in the :resources
key in your config.edn
And they will be copied over from content to public
Alternatively you can place them in public and list them in keep-files to prevent them from being wiped out upon compilation
ah, so resources can be individual files as well as directories
that makes sense - it's just like a unix cp
command
Yup