diff options
Diffstat (limited to 'libpathod/app.py')
-rw-r--r-- | libpathod/app.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libpathod/app.py b/libpathod/app.py index 7d9636e1..c7d0e7b2 100644 --- a/libpathod/app.py +++ b/libpathod/app.py @@ -42,6 +42,12 @@ def index(): return render("index.html", True, section="main") +@app.route('/download') +@app.route('/download.html') +def download(): + return render("download.html", True, section="download") + + @app.route('/about') @app.route('/about.html') def about(): |