{% set items_to_render = zcnote_sidebar_tools_end | default([]) %} {% if items_to_render %} {% set block_components = [ "search-field.html", "search-button-field.html", "version-switcher.html", "components/version-switcher.html" ] %} {% set ns = namespace(inline=[], block=[]) %} {% for item in items_to_render %} {% if item in block_components %} {% set ns.block = ns.block + [item] %} {% else %} {% set ns.inline = ns.inline + [item] %} {% endif %} {% endfor %}
{% if ns.inline %}
{% for item in ns.inline %}
{% include item ignore missing with context %}
{% endfor %}
{% endif %} {% if ns.block %}
{% for item in ns.block %}
{% include item ignore missing with context %}
{% endfor %}
{% endif %}
{% endif %}