def modules(path): return app.send_static_file(os.path.join('modules', path))
def styles(path): return app.send_static_file(os.path.join('styles', path))
def views(path): return app.send_static_file(os.path.join('views', path))
def images(path): return app.send_static_file(os.path.join('images', path))
def components(path): return app.send_static_file(os.path.join('bower_components', path))
def robots(): return app.send_static_file('robots.txt')
def not_found(): return app.send_static_file('404.html')
def favicon(): return app.send_static_file('favicon.ico')
def index(): response = app.send_static_file('index.html') response.set_cookie(app.config['XSRF_COOKIE_NAME'], authnz.get_csrf_token()) return response