{% if is_crate %}
    {# #}
  • All Items
  • {# #}
{% endif %} {% if self.should_render_blocks() %}
{% if !title.is_empty() %}

{# #} {{title_prefix}}{{title|wrapped|safe}} {# #}

{% endif %} {% for block in blocks %} {% if block.should_render() %} {% if !block.heading.name.is_empty() %}

{# #} {{block.heading.name|wrapped|safe}} {# #}

{% endif %} {% if !block.links.is_empty() %}
    {% for link in block.links %}
  • {# #} {% match link.name_html %} {% when Some with (html) %} {{html|safe}} {% else %} {{link.name}} {% endmatch %} {% if !link.children.is_empty() %}
      {% for child in link.children %}
    • {% match child.name_html %} {% when Some with (html) %} {{html|safe}} {% else %} {{child.name}} {% endmatch %}
    • {% endfor %}
    {% endif %}
  • {% endfor %}
{% endif %} {% endif %} {% endfor %}
{% endif %}
{% if !path.is_empty() %} {# #} In {{+ path|wrapped|safe}} {# #} {% endif %}
{# #}