aboutsummaryrefslogtreecommitdiff
path: root/static/bv/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'static/bv/index.html')
-rw-r--r--static/bv/index.html30
1 files changed, 30 insertions, 0 deletions
diff --git a/static/bv/index.html b/static/bv/index.html
new file mode 100644
index 0000000..cecdf44
--- /dev/null
+++ b/static/bv/index.html
@@ -0,0 +1,30 @@
+
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <base href="/bv/">
+ <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 Village]</title>
+ <meta name="description" content="Bracket Village is a nested clue puzzle game.">
+
+ <!-- Open Graph meta tags -->
+ <meta property="og:title" content="Bracket Village" />
+ <meta property="og:description" content="come visit bracket village" />
+ <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>