{# ========================================================= Sidebar Utilities Wrapper ========================================================= #} {% set items_to_render = zcnote_sidebar_tools | 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 %}
{% endif %}