Start your All-Access Pass to unlock this challenge
Check out the following code:
{# source for homepage.twig #}
{{ include('_otherTemplate.twig', {'color': 'blue'}) }}
{# source for _otherTemplate.twig #}
{{ include('_thirdTemplate.twig', {
'color': 'red',
'number': 5
}) }}
{# source for _thirdTemplate.twig #}
{% set number = 10 %}
<h4>
{{ color|default('green') }},
{{ number|default(25) }},
{{ name|default('Leanna') }},
{{ food|default('tomato') }}
</h4>
Now, suppose that homepage.twig
is rendered and passed a food
variable
set to pizza
. What will be printed inside the h4
tag?