Wraps the web app in a Tauri Android shell that provides native GPS via the geolocation plugin. Includes foreground service for background tracking, live map display, GPS data storage in workout sessions, and route visualization in workout history.
22 lines
678 B
HTML
22 lines
678 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<link rel="icon" href="%sveltekit.assets%/favicon.svg" />
|
|
<meta name="viewport" content="width=device-width, viewport-fit=cover" />
|
|
<link rel="manifest" href="/manifest.json" />
|
|
<meta name="theme-color" content="#5E81AC" />
|
|
<link rel="apple-touch-icon" href="/favicon-192.png" />
|
|
<script>
|
|
(function() {
|
|
var t = localStorage.getItem('theme');
|
|
if (t === 'light' || t === 'dark') document.documentElement.dataset.theme = t;
|
|
})();
|
|
</script>
|
|
%sveltekit.head%
|
|
</head>
|
|
<body data-sveltekit-preload-data="hover">
|
|
<div style="display: contents">%sveltekit.body%</div>
|
|
</body>
|
|
</html>
|