forked from microbit-foundation/cctd-ml-machine
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
51 lines (49 loc) · 1.75 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
<!--
(c) 2023, Center for Computational Thinking and Design at Aarhus University and contributors
SPDX-License-Identifier: MIT
-->
<!DOCTYPE html>
<html lang="en" style="height: 100%">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="height=device-height, width=device-width, initial-scale=1.0, minimum-scale=1.0, target-densitydpi=device-dpi"
/>
<title><%= appNameFull %></title>
<meta property="og:title" content="<%= appNameFull %>" />
<link rel="canonical" href="%VITE_FULL_URL%" />
<meta property="og:url" content="%VITE_FULL_URL%" />
<% if (ogDescription) { %>
<meta property="og:description" content="<%= ogDescription %>" />
<% } %>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@microbit_edu" />
<% if (metaDescription) { %>
<meta name="description" content="<%= metaDescription %>" />
<% } %>
<meta property="og:image" content="%VITE_FULL_URL%social.png" />
<link rel="shortcut icon" href="%VITE_FULL_URL%imgs/favicon.ico" />
<script
src="https://shared-assets.microbit.org/common/v1/common.js"
async
></script>
<link
rel="stylesheet"
href="https://shared-assets.microbit.org/common/v1/main.css"
/>
<script>
// GA config itself is via the common assets config depending on consent.
window.dataLayer = window.dataLayer || [];
window.gtag =
window.gtag ||
function () {
window.dataLayer.push(arguments);
};
</script>
<script type="module" src="/src/main.tsx"></script>
</head>
<body style="overscroll-behavior-y: none; height: 100%">
<div id="root" style="overscroll-behavior-y: none; height: 100%"></div>
</body>
</html>