{% set viewModel = fact_sheet.view_model %}
{% if(viewModel.city) %}
    <div>
        <strong class="typo">{{ t('Hometown') }}</strong> | {{ viewModel.city }}{{ viewModel.country ? ', ' ~ viewModel.country : '' }}
    </div>
    <hr>
{% endif %}
{% if(viewModel.follower) %}
<div>
    <strong class="typo">{{ t('Follower') }}</strong> | {{ viewModel.follower }}
</div>
<hr>
{% endif %}
{% if(viewModel.stadium) %}
    <div>
        <strong class="typo">{{ t('Stadion') }}</strong> | {{ viewModel.stadium.name }}, {{ viewModel.stadium.city }}
    </div>
    <hr>
{% endif %}
/* No context defined. */
  • Handle: @fact_sheet_team
  • Preview:
  • Filesystem Path: resources/Views/Organisms/factSheet/fact_sheet_team.twig

Fact sheet

{% include '@organisms/fact_sheet/fact_sheet.twig' with {

    } only %}

ACF

Fields