]> git.cworth.org Git - empires-server/blobdiff - templates/tictactoe-game.html
Add the barest template of an implementation of a tictactoe game
[empires-server] / templates / tictactoe-game.html
diff --git a/templates/tictactoe-game.html b/templates/tictactoe-game.html
new file mode 100644 (file)
index 0000000..f80ebf4
--- /dev/null
@@ -0,0 +1,20 @@
+{% extends "base.html" %}
+
+{% block head %}
+<link rel="stylesheet" href="/tictactoe/tictactoe.css" type="text/css" />
+
+<script src="/react.js"></script>
+<script src="/react-dom.js"></script>
+<script type="module" src="/tictactoe/tictactoe.js"></script>
+{% endblock %}
+
+{% block page %}
+<h1>Tic Tac Toe</h1>
+
+<p>
+  Just the classic game.
+</p>
+
+<div id="tictactoe"></div>
+
+{% endblock %}