-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
32 lines (29 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Flatlands</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no, viewport-fit=cover">
<meta name="author" content="Brandon Bennett">
<meta name="description" content="Flatlands is a cross platform 2D game built in the browser!">
<meta property="og:title" content="Flatlands">
<meta property="og:description" content="Flatlands is a cross platform 2D game built in the browser!">
<meta property="og:image" content="https://offroaders123.github.io/Flatlands/share-temp.png">
<meta property="og:url" content="https://offroaders123.github.io/Flatlands/">
<meta name="twitter:card" content="summary_large_image">
<meta name="theme-color" content="#779c43">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="Flatlands">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<base href="./" target="_blank">
<link rel="canonical" href="https://offroaders123.github.io/Flatlands/">
<link rel="manifest" href="./manifest.webmanifest">
<link rel="alternate icon" type="image/png" sizes="16x16" href="./icon-16.png">
<link rel="alternate icon" type="image/png" sizes="32x32" href="./icon-32.png">
<link rel="apple-touch-icon" sizes="180x180" href="./app-apple-touch-180.png">
</head>
<body>
<div id="root"></div>
<script type="module" src="./src/index.tsx"></script>
</body>
</html>