aboutsummaryrefslogtreecommitdiff
path: root/src/hydrilla_website/app.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/hydrilla_website/app.py')
-rw-r--r--src/hydrilla_website/app.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/hydrilla_website/app.py b/src/hydrilla_website/app.py
index 84303c3..a86c22a 100644
--- a/src/hydrilla_website/app.py
+++ b/src/hydrilla_website/app.py
@@ -91,3 +91,11 @@ website_app = HydrillaWebsite()
@website_app.route('/', methods=['GET'])
def main() -> str:
return flask.render_template('index.html.jinja')
+
+@website_app.route('/favicon.ico', methods=['GET'])
+def favicon() -> str:
+ return flask.send_file('static/haketilo-favicon.ico')
+
+@website_app.route('/downloads', methods=['GET'])
+def downloads() -> str:
+ return flask.render_template('downloads.html.jinja')