diff options
author | Jamie Guthrie <jamie.guthrie@gmail.com> | 2023-08-19 23:07:33 +0200 |
---|---|---|
committer | Jamie Guthrie <jamie.guthrie@gmail.com> | 2023-08-19 23:07:33 +0200 |
commit | c2402bac156703bc5d80fd6c166cafefcb435b1a (patch) | |
tree | b736b1f259ff61d92d4ab81e440f9b6138aed886 /modern/index.html | |
parent | 5a3c8d0ed1ecdce69963e79c95d4f910d86e0537 (diff) | |
parent | 296db114132a395b0743732f04bd6ddf6b4edf0f (diff) | |
download | trackermap-web-c2402bac156703bc5d80fd6c166cafefcb435b1a.tar.gz trackermap-web-c2402bac156703bc5d80fd6c166cafefcb435b1a.tar.bz2 trackermap-web-c2402bac156703bc5d80fd6c166cafefcb435b1a.zip |
Merge branch 'master' into add_country_flags
# Conflicts:
# modern/package-lock.json
Diffstat (limited to 'modern/index.html')
-rw-r--r-- | modern/index.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/modern/index.html b/modern/index.html new file mode 100644 index 00000000..9c5a92f7 --- /dev/null +++ b/modern/index.html @@ -0,0 +1,19 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8" /> + <link rel="icon" href="/favicon.ico" /> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <meta name="theme-color" content="${colorPrimary}" /> + <meta name="description" content="${description}" /> + <link rel="apple-touch-icon" href="/logo192.png" /> + <link rel="manifest" href="/manifest.json" /> + <link rel="stylesheet" href="/styles.css"> + <title>${title}</title> + </head> + <body> + <noscript>Enable JavaScript to use <a href="https://www.traccar.org/">Traccar GPS Tracking System</a>.</noscript> + <div id="root" class="root"></div> + <script type="module" src="/src/index.jsx"></script> + </body> +</html> |