Skip to content
Snippets Groups Projects
_facts-and-figures-details.twig 683 B
Newer Older
{% for detail in details %}
  {% if detail.type == 'infographic' %}
    {% include '@components/facts-and-figures/_infographics.twig' with {
      'infographics': detail,
    } %}
  {% elseif detail.type == 'icon' %}
    <div class="uw-ff--text uw-ff--text__{{ detail.type }}">
      <img src="{{ detail.icon }}" alt="{{ detail.alt }}" />
    </div>
  {% elseif detail.type == 'caption' %}
    {% if detail.caption %}
      <span class="uw-ff--text uw-ff--text__caption balance-text">
        {{ detail.caption }}
      </span>
    {% endif %}
  {% else %}
    <span class="uw-ff--text uw-ff--text__{{ detail.type }} balance-text">{{ detail.text }}</span>
  {% endif %}
{% endfor %}