summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormrpaulblack <paul@paulgo.io>2024-04-17 22:34:31 +0200
committerMarkus Heiser <markus.heiser@darmarIT.de>2024-04-18 12:34:17 +0200
commit5e4ab964b7c59d0208171744795f1dd1bf597a72 (patch)
tree5670faa2d440acc25a50b703b5c659fd93202870
parent1746eecf2bd4d566bf3d440d9efbff75b68d7d42 (diff)
downloadsearx-5e4ab964b7c59d0208171744795f1dd1bf597a72.tar.gz
searx-5e4ab964b7c59d0208171744795f1dd1bf597a72.zip
[feat] template: add apple-touch-icon in html header
* this makes it possible to add SearXNG to iOS devices homescreen with a proper icon
-rw-r--r--searx/templates/simple/base.html1
1 files changed, 1 insertions, 0 deletions
diff --git a/searx/templates/simple/base.html b/searx/templates/simple/base.html
index c72962492..ff9b610f6 100644
--- a/searx/templates/simple/base.html
+++ b/searx/templates/simple/base.html
@@ -29,6 +29,7 @@
{% endblock %}
<link rel="icon" href="{{ url_for('static', filename='img/favicon.png') }}" sizes="any">
<link rel="icon" href="{{ url_for('static', filename='img/favicon.svg') }}" type="image/svg+xml">
+ <link rel="apple-touch-icon" href="{{ url_for('static', filename='img/favicon.png') }}"/>
</head>
<body class="{{ endpoint }}_endpoint" >
<main id="main_{{ self._TemplateReference__context.name|replace("simple/", "")|replace(".html", "") }}" class="{{body_class}}">