{# Right discovery rail — mental map, jumps, and related queries. #} {% set section_links = search_result_section_links | default([]) %} {% set discovery_sections = search_discovery_sections | default([]) %} {% set popular_links = search_popular_links | default([]) %} {% set aside_links = search_aside_links | default([]) %} {% set topic_links = search_topic_links | default([]) %} {% set spotlight = search_spotlight %}
{% if search_query and section_links | length > 0 %}

In this search

{% elif not search_query and discovery_sections | length > 0 %}

Start browsing

Pick a section to scope the workspace, then search within it.

{% end %} {% if topic_links | length > 0 %}

Topics in scope

{% for link in topic_links %} {{ link.label }} {% end %}
{% elif spotlight and spotlight.top_tags | length > 0 %}

Topics in scope

{% for tag in spotlight.top_tags %} {{ tag }} {% end %}
{% end %} {% if aside_links | length > 0 %}

Related queries

{% for item in aside_links %} {{ item.label }} {% end %}
{% elif popular_links | length > 0 and not search_query %}

Popular queries

{% for item in popular_links %} {{ item.label }} {% end %}
{% end %}

How it works