diff options
author | Nat Lasseter <user@4574.co.uk> | 2025-03-31 14:48:27 +0100 |
---|---|---|
committer | Nat Lasseter <user@4574.co.uk> | 2025-03-31 14:48:27 +0100 |
commit | 92d5104a666a6a322b55c85f9a283b0d67d14ef4 (patch) | |
tree | e9b62e48a9152abf111cac462e3756a60021fd41 /static/bs/index.html | |
parent | f7c3cad76620dd1834fc8514b3bb24e9d39f440e (diff) |
[bracket shitty] push static
Diffstat (limited to 'static/bs/index.html')
-rw-r--r-- | static/bs/index.html | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/static/bs/index.html b/static/bs/index.html new file mode 100644 index 0000000..e2eced0 --- /dev/null +++ b/static/bs/index.html @@ -0,0 +1,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> |