feat: add howtoplay and about routes with placeholder templates

This commit is contained in:
Mathew Sir Guest the best
2026-05-06 22:46:49 -06:00
parent 7c3a8f22cf
commit 2104027c20
5 changed files with 32 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
import tornado.web
class AboutHandler(tornado.web.RequestHandler):
def get(self):
self.render("about.html")
+6
View File
@@ -0,0 +1,6 @@
import tornado.web
class HowToPlayHandler(tornado.web.RequestHandler):
def get(self):
self.render("howtoplay.html")