summaryrefslogtreecommitdiff
path: root/searx/templates/simple/page_with_header.html
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2022-01-30 09:39:21 +0100
committerMartin Fischer <martin@push-f.com>2022-01-30 17:29:21 +0100
commit6f0ec7e58f9c7c9d188561296546ec139e1f9118 (patch)
tree86c03106e50bd690a6fe50657ddae1706e29ff21 /searx/templates/simple/page_with_header.html
parent2a6d84dab5fa22a98718afa7450c7a35b987e9c1 (diff)
[simple] introduce page_with_header.html template
Previously the preferences & stats templates contained the markup: <a href="{{ url_for('index') }}"><h1><span>SearXNG</span></h1></a> There are many things wrong with this: 1. the markup was duplicated 2. the CSS needed to be changed whenever a new page wanted to use this header (since the CSS used page-specific selectors) 3. h1 should be reserved for the actual page title (e.g. Preferences or Engine stats) 4. the image was set via CSS which also set: span { visibility: hidden; } which however removes the alternative text from the accessibility tree (meaning screen readers will ignore it). This commit fixes all these problems.
Diffstat (limited to 'searx/templates/simple/page_with_header.html')
-rw-r--r--searx/templates/simple/page_with_header.html5
1 files changed, 5 insertions, 0 deletions
diff --git a/searx/templates/simple/page_with_header.html b/searx/templates/simple/page_with_header.html
new file mode 100644
index 000000000..d4466b612
--- /dev/null
+++ b/searx/templates/simple/page_with_header.html
@@ -0,0 +1,5 @@
+{% set body_class = "page_with_header" %}
+{% extends "simple/base.html" %}
+{% block header %}
+<a href="{{ url_for('index') }}"><img class="logo" src="{{ url_for('static', filename='img/searxng.png') }}" alt="SearXNG"></a>
+{% endblock %}