aboutsummaryrefslogtreecommitdiff
path: root/static/bs/index.html
blob: e2eced02186e19a0cbda07ff6bc6dde3f32c62b7 (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
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
  <base href="/">
  <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 City]</title>
  <meta name="description" content="Bracket City is a nested clue puzzle game.">
  <!-- Google tag (gtag.js) -->
  <script async src="https://www.googletagmanager.com/gtag/js?id=G-KKNGQXN3TQ"></script>
  <script>
    window.dataLayer = window.dataLayer || [];
    function gtag(){dataLayer.push(arguments);}
    gtag('js', new Date());
    gtag('config', 'G-KKNGQXN3TQ');
  </script>

  <!-- Open Graph meta tags -->
  <meta property="og:title" content="Bracket City" />
  <meta property="og:description" content="come visit bracket city" />
  <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>