From c3610817ff11bd969bacc0d4f604e8bb5ae4c321 Mon Sep 17 00:00:00 2001 From: Jacob McDonnell Date: Thu, 2 Jan 2025 16:53:45 -0500 Subject: Fixed Logos --- main.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'main.py') diff --git a/main.py b/main.py index 06e1eaa..3b9b5a6 100755 --- a/main.py +++ b/main.py @@ -48,6 +48,10 @@ def get_rss(): def get_css(file): return send_file(f"static/css/{file}", mimetype='text/css') +@app.route('/logos/') +def get_logo(image): + return send_file(f"static/logo/{image}", mimetype='image/svg') + @app.route('/icons/') def get_favicon(image): return send_file(f"static/logo/{image}", mimetype='image/png') -- cgit v1.2.3