File: /home/accemeff/vendor/craftcms/cms/src/templates/_elements/sources.html
{% spaceless %}
{% set keyPrefix = keyPrefix ?? '' %}
<ul>
{% for source in sources %}
{% if source.heading is defined %}
<li class="heading"><span>{{ source.heading|t('site') }}</span></li>
{% else %}
{% set key = source.keyPath ?? (keyPrefix ~ source.key) %}
<li>{% spaceless %}
<a data-key="{{ key }}"
{%- if source.hasThumbs is defined and source.hasThumbs %} data-has-thumbs{% endif %}
{%- if source.structureId is defined %} data-has-structure{% endif %}
{%- if source.defaultSort is defined %}{% set defaultSort = source.defaultSort %} data-default-sort="{{ defaultSort is iterable ? defaultSort|join(':') : defaultSort }}"{% endif %}
{%- if source.sites is defined %} data-sites="{{ source.sites|join(',') }}"{% endif %}
{%- if source.data is defined -%}
{% for dataKey, dataVal in source.data %} data-{{ dataKey }}="{{ dataVal }}"{% endfor %}
{%- endif %}>
{% if source.status is defined %}
<span class="status {{ source.status }}"></span>
{% elseif source.icon is defined %}
<span class="icon">
{{ (svg(source.icon, sanitize=true, namespace=true) ?: "<span data-icon='#{source.icon}'></span>")|raw }}
</span>
{% elseif source.iconMask is defined %}
<span class="icon icon-mask">
{{ (svg(source.iconMask, sanitize=true, namespace=true) ?: "<span data-icon='#{source.iconMask}'></span>")|raw }}
</span>
{% endif %}
<span class="label">{{ source.label }}</span>
</a>
{% if source.nested is defined and source.nested is not empty %}
<div class="toggle"></div>
{% include "_elements/sources" with {
keyPrefix: key ~ '/',
sources: source.nested
} %}
{% endif %}
{% endspaceless %}</li>
{% endif %}
{% endfor %}
</ul>
{% endspaceless %}