eleven-8.x-1.0-beta5/eleven/templates/layout-landing/views/viewsui/links--view-admin-ui.html.twig
eleven/templates/layout-landing/views/viewsui/links--view-admin-ui.html.twig
{% if links -%}
{%- if heading -%}
{%- if heading.level -%}
<{{ heading.level }}{{ heading.attributes }}>{{ heading.text }}</{{ heading.level }}>
{%- else -%}
<h2{{ heading.attributes }}>{{ heading.text }}</h2>
{%- endif -%}
{%- endif -%}
{# TODO: L-space is messing views admin ui up #}
<ul{{ attributes }}>
{%- for item in links -%}
<li{{ item.attributes.addClass }}>
{%- if item.link -%}
{{ item.link }}
{%- elseif item.text_attributes -%}
<span{{ item.text_attributes }}>{{ item.text }}</span>
{%- else -%}
{{ item.text }}
{%- endif -%}
</li>
{%- endfor -%}
</ul>
{%- endif %}
