This repository has been archived on 2023-10-16. You can view files and clone it, but cannot push or open issues or pull requests.
2022-05-08 02:37:00 +08:00

15 lines
467 B
Twig

<ul{% if id is not empty %} id="{{ id }}"{% endif -%}
{%- if class is not empty %} class="{{ class }}"{% endif %}>
{% if items is not empty %}
{% for item in items %}
{% if item is not iterable %}
{% set item = {'content': item} %}
{% endif %}
{% include 'list/item.twig' with item only %}
{% endfor %}
{% elseif content is not empty %}
{{ content|raw }}
{% endif %}
</ul>