summaryrefslogtreecommitdiffstats
path: root/templates/games
diff options
context:
space:
mode:
authorRose Hogenson <rosehogenson@posteo.net>2026-07-24 19:07:10 -0700
committerRose Hogenson <rosehogenson@posteo.net>2026-07-25 10:59:30 -0700
commit0e9b550cbeec4192dff7f760936fe1d85056a5f6 (patch)
tree4afe4b66e4e7da8a2bd9ab55228006c3381c9086 /templates/games
parentFix path for URL and package indexes (diff)
downloadroseh.moe-0e9b550cbeec4192dff7f760936fe1d85056a5f6.tar.zst
Move pong into games/ subdirectory
Diffstat (limited to 'templates/games')
-rw-r--r--templates/games/pong.html.template11
1 files changed, 11 insertions, 0 deletions
diff --git a/templates/games/pong.html.template b/templates/games/pong.html.template
new file mode 100644
index 0000000..777e0d0
--- /dev/null
+++ b/templates/games/pong.html.template
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<html lang="en" style="width:100%;height:100%;margin:0;padding:0">
+ <head>
+ <title>Pong</title>
+ <link rel="icon" href="/static/pong/icon.webp">
+ <script defer src="/static/pong/pong.js"></script>
+ </head>
+ <body style="width:100%;height:100%;margin:0;padding:0">
+ <canvas id="pong" style="display:block;margin:0;padding:0"></canvas>
+ </body>
+</html>