def static_proxy(path): return app.send_static_file(os.path.join('styles', path))
def components(path): return app.send_static_file(os.path.join('bower_components', path))
def modules(path): return app.send_static_file(os.path.join('modules', path))
def not_found(): return app.send_static_file('404.html')
def robots(): return app.send_static_file('robots.txt')
def favicon(): return app.send_static_file('favicon.ico')
def scripts(path): return app.send_static_file(os.path.join('scripts', path))
def fonts(path): return app.send_static_file(os.path.join('fonts', path))
def index(): return app.send_static_file('index.html')