[feat] template: add apple-touch-icon in html header

* this makes it possible to add SearXNG to iOS devices homescreen with a proper icon
This commit is contained in:
mrpaulblack 2024-04-17 22:34:31 +02:00 committed by Markus Heiser
parent 1746eecf2b
commit 5e4ab964b7

View file

@ -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}}">