Use uswds styles

This commit is contained in:
Brian Duggan
2018-05-22 14:03:30 -04:00
parent 29248ed76e
commit 4e00773491
3 changed files with 30 additions and 14 deletions

3
app.py
View File

@@ -12,8 +12,9 @@ def make_app():
return tornado.web.Application([
(r"/", MainHandler),
],
template_path='./templates',
debug=os.getenv('DEBUG',False),
template_path=os.path.join(os.path.dirname(__file__), "templates"),
static_path=os.path.join(os.path.dirname(__file__), "static"),
)
if __name__ == "__main__":