{% block error_suggest_panel %} {% if keyword_hits | default(hits | default([])) | length > 0 %}

Did you mean?

{% set hits = keyword_hits | default(hits | default([])) %} {% include "partials/error_suggest.html" %} {% end %} {% if semantic_hits | default([]) | length > 0 %}

Related pages

{% set hits = semantic_hits %} {% include "partials/error_suggest.html" %} {% end %} {% if (keyword_hits | default(hits | default([])) | length == 0) and (semantic_hits | default([]) | length == 0) %} {% set hits = [] %} {% include "partials/error_suggest.html" %} {% end %} {% end %}