-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
111 lines (102 loc) · 3.56 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!doctype html>
<html lang="en">
<head prefix="og: http://ogp.me/ns#">
<title>Play - Life</title>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="robots" content="all" />
<meta name="target" content="all" />
<meta name="author" content="Arthaud Proust" />
<meta name="owner" content="Arthaud Proust" />
<meta name="url" content="https://life.arthaud.dev" />
<meta name="identifier-URL" content="https://life.arthaud.dev" />
<link rel="canonical" href="https://life.arthaud.dev" />
<meta name="subject" content="undefined" />
<meta
name="description"
content="Play to the John Conway's Game of Life. Made by Arthaud Proust with VueJs+Tailwindcss+Typescript"
/>
<meta property="og:title" content="Play" />
<meta property="og:type" content="website" />
<meta
property="og:description"
content="Play to the John Conway's Game of Life. Made by Arthaud Proust with VueJs+Tailwindcss+Typescript"
/>
<meta property="og:site_name" content="Life" />
<meta property="og:url" content="https://life.arthaud.dev" />
<meta property="og:locale" content="en" />
<meta
property="og:image"
content="https://life.arthaud.dev/assets/images/hero.jpg"
/>
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://life.arthaud.dev" />
<meta name="twitter:title" content="Play - Life" />
<meta
name="twitter:description"
content="Play to the John Conway's Game of Life. Made by Arthaud Proust with VueJs+Tailwindcss+Typescript"
/>
<meta
name="twitter:image"
content="https://life.arthaud.dev/assets/images/hero.jpg"
/>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-title" content="Play" />
<meta name="apple-mobile-web-app-status-bar-style" content="#ffffff" />
<meta name="theme-color" content="#ffffff" />
<link
rel="shortcut icon"
href="https://life.arthaud.dev/assets/images/favicon.ico"
type="image/x-icon"
/>
<link
rel="apple-touch-icon"
href="https://life.arthaud.dev/assets/images/apple-touch-icon.png"
/>
<link
rel="apple-touch-icon"
sizes="57x57"
href="https://life.arthaud.dev/assets/images/apple-touch-icon-57x57.png"
/>
<link
rel="apple-touch-icon"
sizes="72x72"
href="https://life.arthaud.dev/assets/images/apple-touch-icon-72x72.png"
/>
<link
rel="apple-touch-icon"
sizes="76x76"
href="https://life.arthaud.dev/assets/images/apple-touch-icon-76x76.png"
/>
<link
rel="apple-touch-icon"
sizes="114x114"
href="https://life.arthaud.dev/assets/images/apple-touch-icon-114x114.png"
/>
<link
rel="apple-touch-icon"
sizes="120x120"
href="https://life.arthaud.dev/assets/images/apple-touch-icon-120x120.png"
/>
<link
rel="apple-touch-icon"
sizes="144x144"
href="https://life.arthaud.dev/assets/images/apple-touch-icon-144x144.png"
/>
<link
rel="apple-touch-icon"
sizes="152x152"
href="https://life.arthaud.dev/assets/images/apple-touch-icon-152x152.png"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="https://life.arthaud.dev/assets/images/apple-touch-icon-180x180.png"
/>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>