diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2016-09-22 23:51:07 +0200 |
|---|---|---|
| committer | Adam Tauber <asciimoo@gmail.com> | 2016-09-22 23:51:07 +0200 |
| commit | bee7b497a300622f5ba2b619817f5c89c29ae871 (patch) | |
| tree | 525c3d85020cedd88663a4bb4a0e18c54500044b /searx/templates/legacy/index.html | |
| parent | aaf5d506e51197603922d7b9d259c0f4e498f62b (diff) | |
[mod] rename "default" theme to "legacy"
Diffstat (limited to 'searx/templates/legacy/index.html')
| -rw-r--r-- | searx/templates/legacy/index.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/searx/templates/legacy/index.html b/searx/templates/legacy/index.html new file mode 100644 index 000000000..de956d5b3 --- /dev/null +++ b/searx/templates/legacy/index.html @@ -0,0 +1,18 @@ +{% extends "legacy/base.html" %} +{% block content %} +<div class="center"> + <div class="title"><h1>searx</h1></div> + {% include 'legacy/search.html' %} + <p class="top_margin"> + {% if rtl %} + <a href="{{ url_for('preferences') }}" class="hmarg">{{ _('preferences') }}</a> + {% endif %} + <a href="{{ url_for('about') }}" class="hmarg">{{ _('about') }}</a> + {% if not rtl %} + <a href="{{ url_for('preferences') }}" class="hmarg">{{ _('preferences') }}</a> + {% endif %} + </p> +</div> +{% include 'legacy/github_ribbon.html' %} +{% endblock %} + |