Use uswds styles
This commit is contained in:
3
app.py
3
app.py
@@ -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__":
|
||||
|
Reference in New Issue
Block a user