aboutsummaryrefslogtreecommitdiff
path: root/app.py
diff options
context:
space:
mode:
Diffstat (limited to 'app.py')
-rw-r--r--app.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/app.py b/app.py
index 05e8449..140e31b 100644
--- a/app.py
+++ b/app.py
@@ -7,8 +7,8 @@ app = Flask(__name__)
app.jinja_options['autoescape'] = select_autoescape(default=True)
@app.route('/')
-def hello_world():
- return '<a href="/badge/nushell.svg?crates-io=nu">sample badge for Rust</a>'
+def index():
+ return render_template('index.html.jinja')
@app.route('/badge/<package>.svg')