-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (65 loc) · 1.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!--
Created by Jacob Strieb.
October 2024 - January 2025
-->
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Spreadsheet</title>
<!-- TODO: other meta tags -->
<meta
property="og:image"
content="https://jstrieb.github.io/code-grid/opengraph.png"
/>
<meta property="og:image:alt" content="Code Grid" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta
property="og:image"
content="https://jstrieb.github.io/code-grid/favicon-512.png"
/>
<meta property="og:image:alt" content="Code Grid" />
<meta property="og:image:width" content="512" />
<meta property="og:image:height" content="512" />
<!--
Favicons seem to be picked from last to first, so put the best ones last.
-->
<link
rel="apple-touch-icon"
type="image/png"
sizes="512x512"
href="./public/favicon-512.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./public/favicon-32.png"
/>
<link
rel="icon"
type="image/png"
sizes="128x128"
href="./public/favicon-128.png"
/>
<link
rel="icon"
type="image/png"
sizes="512x512"
href="./public/favicon-512.png"
/>
<link rel="icon" type="image/svg+xml" href="./public/favicon.svg" />
</head>
<body></body>
<script type="module">
import { mount } from "svelte";
import "./src/global.css";
import App from "./src/App.svelte";
const app = mount(App, {
target: document.body,
props: {},
});
</script>
</html>