thank you for this.
i did the leonardo dicaprio point at my screen once i realized what the title actually meant
awesome!! i really loved playing this over the last week or so, plugging away at the stages and bosses. i really like the style of the levels, and the bosses were all cool and memorable. some of the boss attacks could feel a bit unfair sometimes but overall they did feel really learnable, sometimes surprisingly so given how wild the attacks are.
I see the issue. There's no actual problem with the software, but I left a typo in the installation guide...
You've got to write "tags" in the front matter, not "tag". (Even if there only happens to be one tag). Thanks for bringing this to my attention, and sorry again for the annoyance. I'll update the guide.
huh, yeah that is weird. are you just setting the background-image with css (no js when the page loads or anything fancy like that)? are you using your own style or modifying one of the templates?
can you set the background-image to something like background-image: linear-gradient(#fff, #000); ? if that doesn't produce a change, i suspect the rule is being invalidated by a css rule with higher specificity somewhere. if it does work, then maybe the image isn't being transferred over during the build - can you check if the bg image appears in the _site output folder?
Hey!
Strawberry Starter wasn't really designed for this, sadly. When you upload a project with multiple html files on itch, it gets hosted on itch's content delivery server (html-classic.itch.zone). What that means is that if you have any absolute paths in your project (starts with a "/", e.g. "/post/folder/whatever.md") they'll be broken. You need to use relative paths (e.g. "../../post/folder/whatever.md").
Basically you'd have to edit the 11ty template itself and remove all the absolute paths, probably by writing a filter for all the links. Sorry!