Skip to content
Snippets Groups Projects
Verified Commit a3b13247 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Fix theme colour in HTML meta

parent f7826ff0
No related branches found
No related tags found
1 merge request!934Resolve "[PWA] Icon background/app background are red"
...@@ -13,6 +13,7 @@ Fixed ...@@ -13,6 +13,7 @@ Fixed
~~~~~ ~~~~~
* PDF generation failed with S3 storage due to incompatibility with boto3 * PDF generation failed with S3 storage due to incompatibility with boto3
* PWA theme colour defaulted to red
`2.7`_ - 2022-01-24 `2.7`_ - 2022-01-24
------------------- -------------------
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<meta name="description" content="{{ SITE_PREFERENCES.general__description }}"/> <meta name="description" content="{{ SITE_PREFERENCES.general__description }}"/>
<meta name="generator" content="AlekSIS School Information System"/> <meta name="generator" content="AlekSIS School Information System"/>
<meta name="theme-color" content="red"> <meta name="theme-color" content="{{ SITE_PREFERENCES.theme__primary }}">
<meta name="mobile-web-app-capable" content="yes"> <meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="{{ SITE_PREFERENCES.general__title }}"> <meta name="apple-mobile-web-app-title" content="{{ SITE_PREFERENCES.general__title }}">
...@@ -32,5 +32,3 @@ ...@@ -32,5 +32,3 @@
{% with icon=PWA_ICONS.apple_splash.192 %} {% with icon=PWA_ICONS.apple_splash.192 %}
<link href="{{ icon.faviconImage.url }}" media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image"/> <link href="{{ icon.faviconImage.url }}" media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image"/>
{% endwith %} {% endwith %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment