<!-- Error rendering component -->
<!-- TwigException: getLang function does not exist and is not defined in the context -->
<!-- Error: TwigException: getLang function does not exist and is not defined in the context
at /builds/michaelhulsman/footballrs.net/htdocs/content/themes/footballrs.net/node_modules/@frctl/twig/src/adapter.js:156:24
at new Promise (<anonymous>)
at TwigAdapter.render (/builds/michaelhulsman/footballrs.net/htdocs/content/themes/footballrs.net/node_modules/@frctl/twig/src/adapter.js:134:16)
at ComponentSource._renderVariant (/builds/michaelhulsman/footballrs.net/htdocs/content/themes/footballrs.net/node_modules/@frctl/fractal/src/api/components/source.js:212:30)
at _renderVariant.next (<anonymous>)
at onFulfilled (/builds/michaelhulsman/footballrs.net/htdocs/content/themes/footballrs.net/node_modules/co/index.js:65:19) -->
{# @var continent_accordion ThemeViews\Organisms\continentAccordion\ContinentAccordionViewModel #}
{% extends '@atoms/section/section.twig' %}
{% set className = "continent-accordion" %}
{% set lang = getLang() %}
{% block content %}
{% for continent in continent_accordion.continents %}
{% if continent.countries|length > 0 %}
{% embed '@molecules/accordionWrap/accordion_wrap.twig' %}
{% block content %}
{% embed '@molecules/accordionItemWrap/accordion_item_wrap.twig' %}
{% block title %}
{% include '@atoms/headline/headline.twig' with {
headline: t('Teams :continent', {continent: continent.name}),
type: 'h3',
className: 'py-1.5 border-t border-t-lighter'
} %}
{% endblock %}
{% block accordion_content %}
{% for country in continent.countries %}
<a class="no-underline block py-1.5 border-b border-b-lighter headline headline--s" href="{{ route('team.countryIndex.' ~ lang, {country: country.slug}) }}">{{ country.name }}</a>
{% endfor %}
{% endblock %}
{% endembed %}
{% endblock %}
{% endembed %}
{% endif %}
{% endfor %}
{% endblock %}
/* No context defined. */
{% include '@organisms/continent_accordion/continent_accordion.twig' with {
} only %}Fields