{# Support Portal - Search Results Page #} {% set page_group = "support" %} {% include 'components/head.html' %}
{% include 'components/nav-account.html' %}
{% include 'components/alerts.html' %} {# Search Header #}
Support Search

{% if query %} Search Results {% else %} Search Articles {% endif %}

{% include 'support/partials/search-bar.html' with {'query': query} %}
{% if query %} {# Search Meta and Filters #}
{% if results and results|length > 0 %} Found {{ totalResults|number_format }} {{ totalResults == 1 ? 'result' : 'results' }} for "{{ query|e }}" {% else %} No results found for "{{ query|e }}" {% endif %}
{% if results and results|length > 0 %}
Sort by:
{% endif %}
{# Search Results #} {% if results and results|length > 0 %} {# Pagination #} {% if totalPages > 1 %}
    {% if currentPage > 1 %}
  • Previous
  • {% endif %} {% for page in 1..totalPages %} {% if page == currentPage %}
  • {{ page }}
  • {% elseif page == 1 or page == totalPages or (page >= currentPage - 2 and page <= currentPage + 2) %}
  • {{ page }}
  • {% elseif page == currentPage - 3 or page == currentPage + 3 %}
  • ...
  • {% endif %} {% endfor %} {% if currentPage < totalPages %}
  • Next
  • {% endif %}
{% endif %} {% else %} {# No Results - Empty State with Tips #}

No results found

We couldn't find any articles matching "{{ query|e }}"

Search Tips

  • Try using different keywords or synonyms
  • Check your spelling
  • Use more general terms
  • Try browsing by category instead
{% endif %} {% else %} {# No Query - Show Search Prompt #}

Search our knowledge base

Enter keywords in the search box above to find articles

{% endif %}
{% include 'components/footer.html' %}