From e599ff6ce1a2116ae58a3d07b09e1e0742bcff82 Mon Sep 17 00:00:00 2001 From: Santos Gallegos Date: Tue, 5 Mar 2019 17:34:11 -0500 Subject: [PATCH] Remove unused template --- readthedocs/templates/projects/search.html | 45 ---------------------- 1 file changed, 45 deletions(-) delete mode 100644 readthedocs/templates/projects/search.html diff --git a/readthedocs/templates/projects/search.html b/readthedocs/templates/projects/search.html deleted file mode 100644 index 1a799162306..00000000000 --- a/readthedocs/templates/projects/search.html +++ /dev/null @@ -1,45 +0,0 @@ -{% extends "projects/base_project.html" %} -{% load i18n %} - -{% load pagination_tags %} - -{% block title %}{% blocktrans %}Search results for {{ term }}{% endblocktrans %} {% endblock %} - -{% block nav-browse %}class="active"{% endblock %} - -{% block content %} - - {% autopaginate term_list 15 %} - - - {% if term_list %} -
-
- -
-

{% blocktrans %}Search results for {{ term }}{% endblocktrans %}

-
- -
-
- -
-
- -
-
- - {% else %} -

{% trans "Huh?" %}

-

{% trans "No docs matched your search. ¯\(O_o)/¯" %}

- {% endif %} - - - - {% paginate %} - -{% endblock %}