sticky-notes/src/app.html

27 lines
1.0 KiB
HTML
Raw Normal View History

2023-09-11 05:49:56 +08:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>Notes</title>
<meta charset="utf-8" />
2023-10-02 06:12:16 +08:00
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2023-10-01 05:54:34 +08:00
<meta
name="description"
content="Your stack of digital sticky notes privately stored only on your device."
/>
2023-09-11 05:49:56 +08:00
<meta name="color-scheme" content="dark light" />
2023-10-01 05:54:34 +08:00
<meta name="apple-mobile-web-app-title" content="Notes" />
<meta name="application-name" content="Notes" />
<meta name="theme-color" content="#18232c" />
<meta name="msapplication-TileColor" content="#ead40b" />
2023-09-11 05:49:56 +08:00
<link rel="icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#ead40b" />
%sveltekit.head%
</head>
<body data-sveltekit-preload-data="hover">
<div style="display: contents">%sveltekit.body%</div>
</body>
</html>