-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
77 lines (75 loc) · 2.81 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
70
71
72
73
74
75
76
77
<!doctype html>
<html lang="en">
<head>
<title>{app_title}</title>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
<meta
name="description"
content="Personal website of George Andreev, bioinformatician and developer. Explore projects, blog posts, and sign the guestbook."
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta charset="UTF-8" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:title" content="George Andreev personal website" />
<meta
property="og:description"
content="Personal website of George Andreev, bioinformatician and developer. Explore projects, blog posts, and sign the guestbook."
/>
<meta property="og:url" content="https://gabioinf.dev" />
<meta
property="og:image"
content="https://raw.githubusercontent.com/LilDojd/gabioinf/feat/og/public/og-img.png"
/>
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<!-- Twitter/X -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="George Andreev personal website" />
<meta
name="twitter:description"
content="Personal website of George Andreev, bioinformatician and developer. Explore projects, blog posts, and sign the guestbook."
/>
<meta
name="twitter:image"
content="https://raw.githubusercontent.com/LilDojd/gabioinf/feat/og/public/og-img.png"
/>
<meta name="twitter:image:width" content="1200" />
<meta name="twitter:image:height" content="630" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="preload"
href="https://fonts.googleapis.com/css2?family=Recursive:slnt,wght,[email protected],300..800,0..1&display=swap"
as="style"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Recursive:slnt,wght,[email protected],300..800,0..1&display=swap"
media="print"
onload="this.media='all'"
/>
<noscript>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Recursive:slnt,wght,[email protected],300..800,0..1&display=swap"
/>
</noscript>
<!-- We set the font here for now -->
{style_include}
</head>
<body>
<div id="main"></div>
<script>
// We can't use a module script here because we need to start the script immediately when streaming
import("/{base_path}/assets/dioxus/{app_name}.js").then(
({ default: init }) => {
init("/{base_path}/assets/dioxus/{app_name}_bg.wasm").then((wasm) => {
if (wasm.__wbindgen_start == undefined) {
wasm.main();
}
});
},
);
</script>
</body>
</html>