All checks were successful
Build Formula11 Docker Image / pocketbase-docker (push) Successful in 28s
27 lines
859 B
HTML
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>
|