-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
61 lines (56 loc) · 1.6 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="<%- PUBLIC_URL %>/favicon.ico" />
<meta
name="viewport"
content="minimum-scale=1, initial-scale=1, width=device-width"
/>
<title>Linguistics Tree Solver</title>
<meta
name="description"
content="Automatically build trees based on linguistic syntax rules."
data-react-helmet="true"
/>
<link
rel="canonical"
href="https://lin-tree-solver.adambcomer.com/"
data-react-helmet="true"
/>
<meta
property="og:title"
content="Linguistics Tree Solver"
data-react-helmet="true"
/>
<meta
property="og:description"
content="Automatically build trees based on linguistic syntax rules."
data-react-helmet="true"
/>
<meta property="og:type" content="website" data-react-helmet="true" />
<meta
property="og:url"
content="https://lin-tree-solver.adambcomer.com/"
data-react-helmet="true"
/>
<meta
property="og:image"
content="https://lin-tree-solver.adambcomer.com/tree.png"
/>
</head>
<body>
<noscript> You need to enable JavaScript to run this app. </noscript>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
<!-- Cloudflare Web Analytics -->
<% if (MODE === 'production') { %>
<script
defer
src="https://static.cloudflareinsights.com/beacon.min.js"
data-cf-beacon='{"token": "4a8f4dcd24dd44de90aff09a966bb224"}'
></script>
<% } %>
<!-- End Cloudflare Web Analytics -->
</body>
</html>