]> git.cworth.org Git - lmno.games/commitdiff
Drop unused scribe/game.html
authorCarl Worth <cworth@cworth.org>
Sun, 7 Jun 2020 17:23:02 +0000 (10:23 -0700)
committerCarl Worth <cworth@cworth.org>
Sun, 7 Jun 2020 17:23:02 +0000 (10:23 -0700)
The server actually has a template file that serves this prupose. So
this static HTML file is entirely unused, (perhaps obviously so since
it has "Tic-Tac-Toe" in its title.

scribe/game.html [deleted file]

diff --git a/scribe/game.html b/scribe/game.html
deleted file mode 100644 (file)
index b9136b7..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-<!DOCTYPE html>
-<html>
-  <head>
-    <meta charset="utf-8"/>
-    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-
-    <title>Tic-tac-toe</title>
-
-    <link rel="stylesheet" href="/reset.css" type="text/css" />
-    <link rel="stylesheet" href="/style.css" type="text/css" />
-    <link rel="stylesheet" href="tictactoe.css" type="text/css" />
-
-    <script src="/react.js"></script>
-    <script src="/react-dom.js"></script>
-    <script type="module" src="tictactoe.js"></script>
-  </head>
-  <body>
-
-    <div id="page">
-
-      <h1>Tic Tac Toe</h1>
-
-      <p>
-        Just the classic game.
-      </p>
-
-      <div id="message-area">
-      </div>
-
-      <div id="tictactoe"></div>
-
-    </div>
-
-  </body>
-</html>