diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2014-03-04 20:31:03 +0100 |
|---|---|---|
| committer | Adam Tauber <asciimoo@gmail.com> | 2014-03-04 20:31:03 +0100 |
| commit | a4f89a798196f7d0c8a72ca80b34d2e9b6c040d5 (patch) | |
| tree | a994b6f00168fd908489b8adc3d6922e3ab77a4c /searx/templates/about.html | |
| parent | e86947d79c0c1b380e718bc06072285e8a6ca8ed (diff) | |
[fix] proper src/href url handling
Diffstat (limited to 'searx/templates/about.html')
| -rw-r--r-- | searx/templates/about.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/searx/templates/about.html b/searx/templates/about.html index 1fb15c2d9..c2ba7f5a6 100644 --- a/searx/templates/about.html +++ b/searx/templates/about.html @@ -2,9 +2,9 @@ {% block content %} {% include 'github_ribbon.html' %} <div class="row"> - <h1>About <a href="/">searx</a></h1> + <h1>About <a href="{{ url_for('index') }}">searx</a></h1> - <p>Searx is a <a href="https://en.wikipedia.org/wiki/Metasearch_engine">metasearch engine</a>, aggregating the results of other <a href="/preferences">search engines</a> while not storing information about its users. + <p>Searx is a <a href="https://en.wikipedia.org/wiki/Metasearch_engine">metasearch engine</a>, aggregating the results of other <a href="{{ url_for('preferences') }}">search engines</a> while not storing information about its users. </p> <h2>Why use Searx?</h2> <ul> @@ -60,7 +60,7 @@ Searx can be added to your browser's search bar; moreover, it can be set as the <p>See the <a href="https://github.com/asciimoo/searx/wiki/Installation">installation and setup</a> wiki page</p> <h3>How to debug engines?</h3> -<p><a href="/stats">Stats page</a> contains some useful data about the engines used.</p> +<p><a href="{{ url_for('stats') }}">Stats page</a> contains some useful data about the engines used.</p> </div> {% endblock %} |