-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
45 lines (45 loc) · 1.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/oneword-favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>One Word</title>
<!-- Social (eg FB/Twitter) preview info -->
<meta
name="title"
property="og:title"
content="One Word • The co-op party game"
/>
<meta
name="description"
property="og:description"
content="Your friend needs a clue; you get to pick One Word. Make it count!"
/>
<meta
property="og:image"
content="https://oneword.games/oneword-logo.png"
/>
<meta property="og:url" content="https://oneword.games" />
<meta name="twitter:card" content="summary_large_image" />
</head>
<body class="has-navbar-fixed-top">
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
<script type="text/javascript">
;(function (l, e, a, p) {
window.UserLeap = function () {
U._queue.push(arguments)
}
var U = window.UserLeap
U.appId = a
U._queue = []
a = l.createElement('script')
a.async = 1
a.src = e + '?id=' + U.appId
p = l.getElementsByTagName('script')[0]
p.parentNode.insertBefore(a, p)
})(document, 'https://cdn.userleap.com/shim.js', '4DNR5JklfJ')
</script>
</html>