blob: c9d49cec2105656cffc9e9fd0cd57260d7bf2392 (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<base href="/bs/">
<link rel="stylesheet" href="bracket.css">
<link rel="icon" type="image/png" href="bc-favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>[Bracket Shitty]</title>
<meta name="description" content="Bracket Shitty is a nested clue puzzle game.">
<!-- Open Graph meta tags -->
<meta property="og:title" content="Bracket Shitty" />
<meta property="og:description" content="come visit bracket shitty" />
<meta property="og:image" content="https://bracket.city/bc-postcard.jpg" />
<meta property="og:url" content="https://bracket.city/" />
<meta property="og:type" content="website" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="800" />
</head>
<body>
<div id="puzzle-root"></div>
<script src="bracket.js"></script>
<script src="puzzleencoder.js"></script>
<script>
const puzzle = new BracketPuzzle(document.getElementById('puzzle-root'));
</script>
</body>
</html>
|