diff --git a/run.py b/run.py index f0e6f42..599f77d 100755 --- a/run.py +++ b/run.py @@ -119,6 +119,8 @@ def privacy(): @app.route('/faq') def faq(): return render_template('faq.html', page=config["SITE_DATA"]) +def favicon(): + return send_from_directory('static', 'favicon.ico') # Custom 404 @app.errorhandler(404)