Path names for SVG images in Diazo [SOLVED]

Is there a way to specify a relative path for an SVG image in a Diazo theme?

According to https://stackoverflow.com/questions/12748197/svg-code-in-plone-page I tried this:

              <object data="https://2017.ploneconf.org/++theme++ploneconf2017-kim-20170829/image.svg" type="image/svg+xml"></object> 

and it works but it doesn't if I try to set the data attribute to use a relative path, e.g. ./image.svg or ../image.svg or /image.svg or even just image.svg

Did you try including the absolute path prefix?

<object data="/++theme++ploneconf2017-kim-20170829/image.svg" type="image/svg+xml"></object>

I did not... but I would also like to avoid having to hardcode the theme name...

Oh geez, this works:

<img src="image.svg" title="bla" alt="bla">

[hides head in shame]