Go to the Home Page

Bottle Settings



from bottle import route,run,template,static_file
@route("/")
def top():
    return template("toppage")
@route("/static/")
def static(filepath):
    return static_file(filepath,root="./static")
run(host="localhost",port=5500,debug=True)