Files
svelte-formula11/src/app.html
Christoph Urlacher 082bb72ec1
All checks were successful
Build Formula11 Docker Image / pocketbase-docker (push) Successful in 28s
Seasonpicks: Disable countdown until seasonpicks will be locked
2025-03-14 01:45:57 +01:00

27 lines
859 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<!-- Scale the viewport for mobile devices -->
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Set the iOS Safari header/tab bar color -->
<meta name="theme-color" content="#F8D7DA" />
<link rel="icon" href="%sveltekit.assets%/favicon.svg" />
<!-- SvelteKit inserts the header contents here -->
%sveltekit.head%
</head>
<!-- Prefetch data specified in "load" functions on link hover -->
<body data-theme="formula11Theme" data-sveltekit-preload-data="hover">
<!-- SvelteKit inserts the body contents here -->
<!-- TODO: The fucking user-select: none doesn't work in firefox -->
<div style="display: contents; user-select: none; -moz-user-select: -moz-none">
%sveltekit.body%
</div>
</body>
</html>