I'm trying to link to a file located in my theme assets folder from the base.html.twig template. I tried both of the below, but it can't find the audio file I'm trying to link to.
{% if page.header.audio %}
<audio autoplay src="theme://static/audio{{ page.header.audio }}.mp3"></audio>
{% endif %}
{% if page.header.audio %}
<audio autoplay src="../../static/audio{{ page.header.audio }}.mp3"></audio>
{% endif %}
How would I use a relative link in the template file? If it helps, my theme directory structure looks like this:
static
-- audio
-- css
templates
-- partials
-- --base.html.twig