-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
27 lines (27 loc) · 1.13 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Goblin-like</title>
<link rel="stylesheet" href="goblin_like.css" />
<script src="client/libraries/mousetrap.min.js"></script>
<!-- Only Libraries and snippets before this point. -->
<!-- Server -->
<script src="shared/environment.js"></script>
<!-- Debug -->
<!-- Meta -->
<meta property="og:site_name" content="Goblin-Like">
<meta property="og:url" content="http://jacobabrennan.github.io/Goblinlike/">
<meta property="og:title" content="Let's play Goblin-Like.">
<meta property="og:description" content="An old-school Roguelike featuring a Goblin protagonist.">
<meta property="og:image" content="http://jacobabrennan.github.io/Goblinlike/rsc/meta/og_preview.png">
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:site" content="@AntlerPig">
</head>
<body>
<div class="central">
<div id="game_area"></div>
</div>
<script type="module" src="goblin_like.js"></script>
</body>
</html>