diff options
Diffstat (limited to 'hyperkitty/templates')
-rw-r--r-- | hyperkitty/templates/error-nosearch.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/hyperkitty/templates/error-nosearch.html b/hyperkitty/templates/error-nosearch.html new file mode 100644 index 0000000..e27e153 --- /dev/null +++ b/hyperkitty/templates/error-nosearch.html @@ -0,0 +1,31 @@ +{% extends "base.html" %} +{% load url from future %} +{% load gravatar %} +{% load hk_generic %} +{% load storm %} + + +{% block title %} +Error: no search engine available +{% if mlist %} + - {{ mlist.display_name|default:mlist.name|escapeemail }} +{% endif %} + - {{ app_name|title }} +{% endblock %} + +{% block content %} + +<div class="row-fluid"> + + <div class="span2"> + </div> + + <div class="span7"> + <p class="text-error"> + Sorry, the search engine is not available (it has been disabled for this site). + </p> + </div> + +</div> + +{% endblock %} |