list
Information
- Folder
src/components/patterns/list
Files
Schema
Mocks
Template
// src/components/patterns/list/list.html.twig
{% set tag = type != "ordered" ? "ul" : "ol" %}
<div class="List u-container u-grid Rte">
<div class="List-content">
{% if headline %}
<h2>{{ headline|german_quotes }}</h2>
{% endif %}
<{{ tag }} class="List-list List-list--{{ type }}">
{% for item in items %}
<li class="List-item {% if item.type %} List-item--{{ item.type }}{% endif %}">{{ item.markup }}</li>
{% endfor %}
</{{ tag }}>
</div>
</div>