Initial commit
This commit is contained in:
commit
e670b3f71f
36 changed files with 3243 additions and 0 deletions
47
src/app.html
Normal file
47
src/app.html
Normal file
|
@ -0,0 +1,47 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<link
|
||||
href="/assets/favicon/favicon.ico"
|
||||
type="image/x-icon"
|
||||
rel="icon"
|
||||
media="(prefers-color-scheme: light)"
|
||||
/>
|
||||
<link
|
||||
href="/assets/favicon-dark/favicon.ico"
|
||||
type="image/x-icon"
|
||||
rel="icon"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
/>
|
||||
<link
|
||||
href="/assets/favicon/favicon.png"
|
||||
type="image/png"
|
||||
rel="icon"
|
||||
media="(prefers-color-scheme: light)"
|
||||
/>
|
||||
<link
|
||||
href="/assets/favicon-dark/favicon.png"
|
||||
type="image/png"
|
||||
rel="icon"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
/>
|
||||
<link
|
||||
href="/assets/favicon/favicon.svg"
|
||||
type="image/svg+xml"
|
||||
rel="icon"
|
||||
media="(prefers-color-scheme: light)"
|
||||
/>
|
||||
<link
|
||||
href="/assets/favicon-dark/favicon.svg"
|
||||
type="image/svg+xml"
|
||||
rel="icon"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
/>
|
||||
%sveltekit.head%
|
||||
</head>
|
||||
<body data-sveltekit-preload-data="hover">
|
||||
<div style="display: contents">%sveltekit.body%</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue