-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
executable file
·35 lines (35 loc) · 1.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Wingspan Helper</title>
<link rel="icon" href="/favicon.ico">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<!-- Search Engine -->
<meta name="description" content="A digital scoresheet for the boardgame Wingspan.">
<meta name="image" content="https://wingspan-helper.now.sh/img/icons/icon-512x512.png">
<meta name="keywords" content="wingspan, scoresheet, boardgame, automata">
<meta name="robots" content="index, follow">
<meta name="author" content="Valentin von Guttenberg">
<!-- Schema.org for Google -->
<meta itemprop="name" content="Wingspan Helper">
<meta itemprop="description" content="A digital scoresheet for the boardgame Wingspan.">
<meta itemprop="image" content="https://wingspan-helper.now.sh/img/icons/icon-512x512.png">
<!-- Open Graph general (Facebook, Pinterest & Google+) -->
<meta name="og:title" content="Wingspan Helper">
<meta name="og:description" content="A digital scoresheet for the boardgame Wingspan.">
<meta name="og:image" content="https://wingspan-helper.now.sh/img/icons/icon-512x512.png">
<meta name="og:url" content="https://wingspan-helper.now.sh/">
<meta name="og:site_name" content="Wingspan Helper">
<meta name="og:locale" content="en_US">
<meta name="og:type" content="website">
</head>
<body>
<noscript>
<strong>I'm sorry but Wingspan Helper needs JavaScript to work, as it is a single-page-application. Please enable JavaScript continue.</strong>
</noscript>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>