cobalt/web/src/app.html

36 lines
1.1 KiB
HTML
Raw Normal View History

2024-06-13 10:32:17 +01:00
<!DOCTYPE html>
<html>
2024-06-13 10:32:17 +01:00
<head>
<meta charset="utf-8">
<meta name="viewport" content="viewport-fit=cover, width=device-width, height=device-height, initial-scale=1, maximum-scale=1">
<title>cobalt</title>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="cobalt">
<link rel="icon" href="%sveltekit.assets%/favicon.png">
<link rel="apple-touch-icon" sizes="180x180" href="%sveltekit.assets%/icons/apple-touch-icon.png">
2024-07-09 16:16:40 +01:00
<link crossorigin="use-credentials" rel="manifest" href="%sveltekit.assets%/manifest.json">
2024-06-13 10:32:17 +01:00
%sveltekit.head%
</head>
<style>
body {
background-color: black;
}
@media (prefers-color-scheme: light) {
body {
background-color: white;
}
}
</style>
<body data-sveltekit-preload-data="hover" data-sveltekit-preload-code="eager">
<div style="display: contents">
%sveltekit.body%
</div>
2024-06-13 10:32:17 +01:00
</body>
</html>