{%- extends "page.html" %}
{# Over-ride the body to be custom search structure we want #}
{% block docs_body %}
{{ _("Search") }}
{# the following line was modified from what was originally from pydata_sphinx_theme so that file could be overridden #}
{% include "components/search-field.html" %}
{% endblock docs_body %}
{# Below sections just re-create the behavior of Sphinx default search #}
{# Page metadata #}
{%- block htmltitle -%}
{{ _("Search") }} - {{ title or docstitle }}
{%- endblock htmltitle -%}
{# Manually include the search JS that Sphinx includes #}
{% block scripts -%}
{{ super() }}
{%- endblock scripts %}