diff options
Diffstat (limited to 'app.py')
-rw-r--r-- | app.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,7 +4,8 @@ from bottle import jinja2_template as template app = Bottle() @app.route("/") -def hello(): [email protected]("/index.html") +def index(): return template("index") @app.route("/static/<filename>") |