diff options
-rw-r--r-- | modern/public/index.html | 6 | ||||
-rw-r--r-- | modern/public/manifest.json | 6 | ||||
-rw-r--r-- | web/debug.html | 2 | ||||
-rw-r--r-- | web/release.html | 2 |
4 files changed, 8 insertions, 8 deletions
diff --git a/modern/public/index.html b/modern/public/index.html index 9d06d07d..f92dae57 100644 --- a/modern/public/index.html +++ b/modern/public/index.html @@ -4,12 +4,12 @@ <meta charset="utf-8" /> <link rel="icon" href="%PUBLIC_URL%/favicon.ico" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> - <meta name="theme-color" content="#1a237e" /> - <meta name="description" content="Traccar GPS tracking system" /> + <meta name="theme-color" content="${colorPrimary}" /> + <meta name="description" content="${description}" /> <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" /> <link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> <link rel="stylesheet" href="%PUBLIC_URL%/styles.css"> - <title>Traccar</title> + <title>${title}</title> </head> <body> <noscript>Enable JavaScript to use <a href="https://www.traccar.org/">Traccar GPS Tracking System</a>.</noscript> diff --git a/modern/public/manifest.json b/modern/public/manifest.json index fad9bbe5..9142346c 100644 --- a/modern/public/manifest.json +++ b/modern/public/manifest.json @@ -1,6 +1,6 @@ { - "short_name": "Traccar", - "name": "Traccar GPS Tracking System", + "short_name": "${title}", + "name": "${description}", "icons": [ { "src": "favicon.ico", @@ -22,6 +22,6 @@ ], "start_url": ".", "display": "standalone", - "theme_color": "#1a237e", + "theme_color": "${colorPrimary}", "background_color": "#ffffff" } diff --git a/web/debug.html b/web/debug.html index ef2d2a56..08b6e07d 100644 --- a/web/debug.html +++ b/web/debug.html @@ -3,7 +3,7 @@ <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"> -<title>Traccar</title> +<title>${title}</title> <link rel="icon" sizes="192x192" href="/icon.png"> <link rel="apple-touch-icon" href="/apple-touch-icon.png"> <link rel="stylesheet" href="app.css"> diff --git a/web/release.html b/web/release.html index 1c22da60..44561ff3 100644 --- a/web/release.html +++ b/web/release.html @@ -3,7 +3,7 @@ <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"> -<title>Traccar</title> +<title>${title}</title> <link rel="icon" sizes="192x192" href="/icon.png"> <link rel="apple-touch-icon" href="/apple-touch-icon.png"> <link rel="stylesheet" href="app.css"> |