2018-09-03 16:46:57 +08:00
|
|
|
<!DOCTYPE html>
|
2022-05-08 23:25:40 +08:00
|
|
|
<html lang="en">
|
2018-09-03 16:46:57 +08:00
|
|
|
<head>
|
2022-06-05 07:00:14 +08:00
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
2023-05-16 03:06:14 +08:00
|
|
|
<meta name="theme-color" content="${colorPrimary}" />
|
|
|
|
<meta name="description" content="${description}" />
|
2023-08-27 06:55:52 +08:00
|
|
|
<link rel="icon" href="/favicon.ico" />
|
|
|
|
<link rel="apple-touch-icon" href="/apple-touch-icon-180x180.png" sizes="180x180" />
|
2023-08-27 07:17:26 +08:00
|
|
|
<link rel="manifest" href="/manifest.webmanifest" />
|
2023-08-20 04:58:45 +08:00
|
|
|
<link rel="stylesheet" href="/styles.css">
|
2023-05-16 03:06:14 +08:00
|
|
|
<title>${title}</title>
|
2024-09-14 13:22:39 +08:00
|
|
|
<style>
|
|
|
|
.loader {
|
2024-09-14 22:34:25 +08:00
|
|
|
position: fixed; top: calc(50% - 25px); left: calc(50% - 25px);
|
2024-09-15 00:37:36 +08:00
|
|
|
width: 50px; aspect-ratio: 1; box-sizing: content-box; animation: ll 1s infinite linear;
|
2024-09-14 13:33:31 +08:00
|
|
|
border-radius: 50%; border: 8px solid lightgray; border-right-color: black;
|
2024-09-14 13:22:39 +08:00
|
|
|
}
|
2024-09-14 22:34:25 +08:00
|
|
|
@keyframes ll {to{transform: rotate(1turn)}}
|
2024-09-14 13:22:39 +08:00
|
|
|
</style>
|
2018-09-03 16:46:57 +08:00
|
|
|
</head>
|
2022-05-08 23:25:40 +08:00
|
|
|
<body>
|
2023-02-23 10:06:10 +08:00
|
|
|
<noscript>Enable JavaScript to use <a href="https://www.traccar.org/">Traccar GPS Tracking System</a>.</noscript>
|
2022-05-09 05:31:29 +08:00
|
|
|
<div id="root" class="root"></div>
|
2024-09-14 13:22:39 +08:00
|
|
|
<div class="loader"></div>
|
|
|
|
<script type="module" src="/src/index.jsx" onerror="alert('Loading error.')"></script>
|
2018-09-03 16:46:57 +08:00
|
|
|
</body>
|
|
|
|
</html>
|