From fdc755a7d50762708b262d9109a68a42d972dcb7 Mon Sep 17 00:00:00 2001 From: Michiel Borkent Date: Mon, 24 May 2021 23:17:18 +0200 Subject: [PATCH] html --- resources/public/index.html | 3 ++- script/release.clj | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/resources/public/index.html b/resources/public/index.html index 05cc17d..3a45dda 100644 --- a/resources/public/index.html +++ b/resources/public/index.html @@ -103,9 +103,10 @@ </script> +
+ Also see a tic-tac-toe demo. -
diff --git a/script/release.clj b/script/release.clj index 7d3b9e1..2b78439 100755 --- a/script/release.clj +++ b/script/release.clj @@ -6,6 +6,9 @@ (fs/copy "resources/public/index.html" "gh-pages" {:replace-existing true}) +(fs/copy "resources/public/tictactoe.html" "gh-pages" + {:replace-existing true}) + (def js-source-dir (fs/file "resources" "public" "js")) (def js-target-dir (fs/file "gh-pages" "js")) (fs/create-dirs js-target-dir)