Add initial version of frontend

This commit is contained in:
Bálint Bokros
2017-11-17 15:42:39 +01:00
parent 8e6b432719
commit 4c4d1ac8ab
3 changed files with 67 additions and 0 deletions

6
handlers/main_handler.py Normal file
View File

@ -0,0 +1,6 @@
from tornado.web import RequestHandler
class MainHandler(RequestHandler):
def get(self, *args, **kwargs):
self.render('index.html')