def favicon(): return app.send_static_file('favicon.ico')
def index(): return app.send_static_file('index.html')
def return_css(path): return app.send_static_file('css/%s' % path)
def return_img(path): return app.send_static_file('img/%s' % path)
def return_js(path): return app.send_static_file('js/%s' % path)