From 1ecac94d7af80a7e2aa7a30999b91f0e1451121c Mon Sep 17 00:00:00 2001 From: David Stansby Date: Tue, 16 Jan 2024 15:02:59 +0000 Subject: [PATCH] Remove old search.html template --- mpl_sphinx_theme/search.html | 45 ------------------------------------ 1 file changed, 45 deletions(-) delete mode 100644 mpl_sphinx_theme/search.html diff --git a/mpl_sphinx_theme/search.html b/mpl_sphinx_theme/search.html deleted file mode 100644 index aacae3d..0000000 --- a/mpl_sphinx_theme/search.html +++ /dev/null @@ -1,45 +0,0 @@ -{% extends "layout.html" %} -{% set title = _('Search') %} -{%- block scripts %} - {{ super() }} - - -{%- endblock %} -{% block body %} -

{{ _('Search') }}

-

- {% trans %}Searching for multiple words only shows matches that contain - all words.{% endtrans %} -

-

- If you want to limit your search to working code examples, include the - keyword "codex" (mnemonic for code example) in your search, e.g., - "codex ellipse". -

-
- - - -
- {% if search_performed %} -

{{ _('Search Results') }}

- {% if not search_results %} -

{{ _('Your search did not match any results.') }}

- {% endif %} - {% endif %} -
- {% if search_results %} - - {% endif %} -
-{% endblock %} -{% block footer %} - {{ super() }} - -{% endblock %}