feat: add howtoplay and about routes with placeholder templates
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
import tornado.web
|
||||
|
||||
|
||||
class AboutHandler(tornado.web.RequestHandler):
|
||||
def get(self):
|
||||
self.render("about.html")
|
||||
@@ -0,0 +1,6 @@
|
||||
import tornado.web
|
||||
|
||||
|
||||
class HowToPlayHandler(tornado.web.RequestHandler):
|
||||
def get(self):
|
||||
self.render("howtoplay.html")
|
||||
Reference in New Issue
Block a user