Add all the templates and the routes

This commit is contained in:
Brian Duggan
2018-05-25 12:31:29 -04:00
parent 5007a246fb
commit b9de54d211
9 changed files with 104 additions and 21 deletions

View File

@@ -1,5 +1,9 @@
from atst.handler import BaseHandler
class MainHandler(BaseHandler):
def initialize(self,page):
self.page = page
def get(self):
self.render("hello.html.to")
self.render( '%s.html.to' % self.page, page = self.page )