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

Print twig inside .html() action

Started by Muut Archive 11 years ago · 7 replies · 402 views
11 years ago

Hey there!
I have the following snippet:

TWIG
{{ image.html('My title', 'alt', 'myclass') }}

Can I print twig inside this .html() action? For example to output a special alt-tag defined in the page header of the corresponding markdown file?

I tried the following, but this doesn't work.

TWIG
{{ image.html('My title', '{{ page.header.imagemeta }} ', 'myclass') }}

Is it possible to get this to work somehow?
Cheers!

11 years ago

it's even easier:

TWIG
{{ image.html('My title', page.header.imagemeta, 'myclass') }}
11 years ago

omg, I love you guys and Grav so much <3
I tried this, but inside quotes and it didn't work. Your solution works like a charm.
Thank you! It seems like everything I can imagine is somehow possible with Grav. This is soo cool!

11 years ago

heh no problem. BTW, for your better understanding, the quotes are a string literal, as the encompassing display backets: {{ }} already are indicating you are writing Twig, you can use variables directly, and that one, evaluates to a string, so you don't need the quotes. Hope that makes sense.

BTW, if you love Grav all we ask is you spread the word :) The more people that use and contribute to Grav, the better it becomes for everyone!

11 years ago

Hah! Seems like a typical beginners mistake. I should have known better.
Anyways… thanks again and I'll do my best to tell everyone about Grav.
Have a great day!

11 years ago

Oh alright! Thanks for your additional information. Didn't know that…

11 years ago

You can use every filters/functions from Twig (this library used for parse the templates). You are welcome! :)

Suggested topics

Topic Participants Replies Views Activity
Archive · by Deleted User, 9 years ago
0 1338 9 years ago
Archive · by Muut Archive, 9 years ago
2 927 9 years ago
Archive · by Muut Archive, 9 years ago
2 4056 9 years ago
Archive · by Muut Archive, 9 years ago
1 2941 9 years ago
Archive · by Muut Archive, 9 years ago
3 1112 9 years ago