custom_add_content-8.x-1.2/templates/custom-add-content-page-add.html.twig
templates/custom-add-content-page-add.html.twig
{#
Check out menu.html.twig
We call a macro which calls itself to render the full tree.
@see http://twig.sensiolabs.org/doc/tags/macro.html
@see menu.html.twig
#}
{% import _self as menu_custom_add_content %}
{{ menu_custom_add_content.menu_links(items, 0) }}
{% macro menu_links(items, menu_level) %}
{% import _self as menus %}
{% if items %}
{% if menu_level == 0 %}
<ul class="admin-list">
{% else %}
<ul>
{% endif %}
{% for item in items %}
<li{{ item.attributes }}>
{{ link(item.title, item.url) }}
{% if item.below %}
{{ menus.menu_links(item.below, menu_level + 1) }}
{% endif %}
</li>
{% endfor %}
</ul>
{% endif %}
{% endmacro %}
