summaryrefslogtreecommitdiff
path: root/app.py
diff options
context:
space:
mode:
Diffstat (limited to 'app.py')
-rw-r--r--app.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/app.py b/app.py
index 20932a8..e8bbc8b 100644
--- a/app.py
+++ b/app.py
@@ -1,9 +1,10 @@
from bottle import Bottle, run
+from bottle import jinja2_template as template
app = Bottle()
def hello():
- return "Hello World!"
+ return template("index")
run(app, host='localhost', port=8080)