diff options
Diffstat (limited to 'servo/templates/search/results/products.html')
-rwxr-xr-x | servo/templates/search/results/products.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/servo/templates/search/results/products.html b/servo/templates/search/results/products.html new file mode 100755 index 0000000..32afb5c --- /dev/null +++ b/servo/templates/search/results/products.html @@ -0,0 +1,10 @@ +{% extends "search/spotlight.html" %} +{% load i18n %} + +{% block second_column %} + {% if products %} + {% include "products/list.html" %} + {% else %} + <h1 class="muted text-center">{% trans "No products found" %}</h1> + {% endif %} +{% endblock second_column %} |