def fonts(filename): return bottle.static_file(filename, root=os.path.join(ENV.ROOT, 'static/fonts'))
def favicon(): return bottle.static_file('favicon.ico', root=os.path.join(ENV.ROOT, 'static'))
def javascripts(filename): return bottle.static_file(filename, root=os.path.join(ENV.ROOT, 'static/js'))
def images(filename): return bottle.static_file(filename, root=os.path.join(ENV.ROOT, 'static/img'))
def stylesheets(filename): return bottle.static_file(filename, root=os.path.join(ENV.ROOT, 'static/css'))
def fonts(filename): return bottle.static_file(filename, root='static/fonts')
def images(filename): return bottle.static_file(filename, root='static/img')
def javascripts(filename): return bottle.static_file(filename, root='static/js')
def stylesheets(filename): return bottle.static_file(filename, root='static/css')