Esempio n. 1
0
def fonts(filename):
  return bottle.static_file(filename, root=os.path.join(ENV.ROOT, 'static/fonts'))
Esempio n. 2
0
def favicon():
  return bottle.static_file('favicon.ico', root=os.path.join(ENV.ROOT, 'static'))
Esempio n. 3
0
def javascripts(filename):
  return bottle.static_file(filename, root=os.path.join(ENV.ROOT, 'static/js'))
Esempio n. 4
0
def images(filename):
  return bottle.static_file(filename, root=os.path.join(ENV.ROOT, 'static/img'))
Esempio n. 5
0
def stylesheets(filename):
  return bottle.static_file(filename, root=os.path.join(ENV.ROOT, 'static/css'))
Esempio n. 6
0
def fonts(filename):
    return bottle.static_file(filename, root='static/fonts')
Esempio n. 7
0
def images(filename):
    return bottle.static_file(filename, root='static/img')
Esempio n. 8
0
def javascripts(filename):
    return bottle.static_file(filename, root='static/js')
Esempio n. 9
0
def stylesheets(filename):
    return bottle.static_file(filename, root='static/css')