Skip to content
Grav 2.0 is officially stable. Read the announcement →
Archive

Linking to media file from template?

Started by Muut Archive 11 years ago · 5 replies · 542 views
11 years ago

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.

TWIG
{% if page.header.audio %}
<audio autoplay src="theme://static/audio{{ page.header.audio }}.mp3"></audio>
{% endif %}
TWIG
{% 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

11 years ago

Hi @Alex, try

TWIG
{% if page.header.audio %}
<audio autoplay src="{{ url('theme://static/audio #{page.header.audio}.mp3') }}"></audio>
{% endif %}

Basically, url is a special built-in function you can use to resolve several paths. Here theme:// is a stream. Grav has lot of streams predefined. You can find a few here and more here.

11 years ago

OK, that didn't work, but I'll look into streams. That gives me someplace to start. Does it need to be inside any blocks?

11 years ago

I know this works because I use it in the Antimatter partials/base.html.twig:

TWIG
<link rel="icon" type="image/png" href="{{ url('theme://images/favicon.png') }}" />

So using the url() method for the theme:// stream does work. if that is not working then it's because you need to concaat your string differently rather than next tags:

TWIG
{% if page.header.audio %}
<audio autoplay src="{{ url('theme://static/audio/'~page.header.audio~'.mp3') }}"></audio>
{% endif %}

That should work now :)

11 years ago

Thanks! That works great! :) I'm still amazed by the support you guys provide for this CMS. By the way, once I get a handle on the Grav system a bit more I'd love to help put a few basic themes together.

11 years ago

Thanks Alex! and any themes would be greatly appreciated :)

Suggested topics

Topic Participants Replies Views Activity
Archive · by Deleted User, 9 years ago
0 1330 9 years ago
Archive · by Muut Archive, 9 years ago
2 922 9 years ago
Archive · by Muut Archive, 9 years ago
2 4052 9 years ago
Archive · by Muut Archive, 9 years ago
1 2930 9 years ago
Archive · by Muut Archive, 9 years ago
3 1109 9 years ago