-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (29 loc) · 1.11 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="theme-color" content="seagreen" />
<title>Pileon solitaire</title>
<meta
name="description"
content="The goal of the pileon solitaire is to rearrange a deck of cards into piles of equal ranks from thirteen random piles of four using fifteen piles."
/>
<meta property="og:title" content="Pileon solitaire" />
<meta
property="og:description"
content="The goal of the pileon solitaire is to rearrange a deck of cards into piles of equal ranks from thirteen random piles of four using fifteen piles."
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="%BASE_URL%" />
<meta property="og:image" content="%BASE_URL%/preview.png" />
<link rel="icon" type="image/png" href="%BASE_URL%/favicon.png" />
<link rel="manifest" href="%BASE_URL%/manifest.json" />
</head>
<body>
<script type="module" src="/src/main.ts"></script>
</body>
</html>