2022-08-15 03:24:15 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
2022-09-30 00:33:48 +00:00
|
|
|
<script defer data-domain="interval-timer.wbrawner.com" src="https://plausible.wbrawner.com/js/plausible.js"></script>
|
2022-08-15 03:24:15 +00:00
|
|
|
<meta charset="utf-8" />
|
|
|
|
<title>Trainterval</title>
|
|
|
|
<base href="/" />
|
|
|
|
<meta name="viewport"
|
|
|
|
content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=5.0" />
|
|
|
|
<meta name="description" content="An interval timer" />
|
2023-09-14 03:21:50 +00:00
|
|
|
<meta name="theme-color" content="#000000" />
|
2022-08-15 03:24:15 +00:00
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
|
|
<meta name="apple-mobile-web-app-title" content="Trainterval" />
|
|
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
|
|
|
|
<link rel="icon" href="/assets/icons/24x24-icon.png" type="image/x-icon" />
|
|
|
|
<link rel="manifest" href="/manifest.json" />
|
2023-12-17 16:45:32 +00:00
|
|
|
<script type="module" src="/src/vendor/js/fluentui-web-components.js" crossorigin="anonymous"></script>
|
2022-08-15 03:24:15 +00:00
|
|
|
<script type="module" src="/src/app-index.ts"></script>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<fluent-design-system-provider>
|
|
|
|
<app-index></app-index>
|
|
|
|
</fluent-design-system-provider>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
if ('serviceWorker' in navigator) {
|
|
|
|
navigator.serviceWorker.register(
|
|
|
|
import.meta.env.MODE === 'production' ? '/sw.js' : '/sw.js?dev-sw'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
|
2022-09-30 00:33:48 +00:00
|
|
|
</html>
|