This is an automated email from the ASF dual-hosted git repository. gstein pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/steve.git
commit 7a9877581c9bc09004aa9bcf67c27858b8cb6a9b Author: Greg Stein <[email protected]> AuthorDate: Wed Oct 8 23:41:58 2025 -0500 add favicon --- v3/server/pages.py | 3 +++ v3/server/static/favicon.ico | Bin 0 -> 15406 bytes 2 files changed, 3 insertions(+) diff --git a/v3/server/pages.py b/v3/server/pages.py index 5bf3702..9dec156 100644 --- a/v3/server/pages.py +++ b/v3/server/pages.py @@ -280,6 +280,9 @@ async def about_page(): @APP.route('/static/<path:filename>') async def serve_static(filename): return await quart.send_from_directory('static', filename) [email protected]('/favicon.ico') +async def serve_favicon(): + return await quart.send_from_directory('static', 'favicon.ico') def format_datetime(dt): diff --git a/v3/server/static/favicon.ico b/v3/server/static/favicon.ico new file mode 100644 index 0000000..a7e00a5 Binary files /dev/null and b/v3/server/static/favicon.ico differ
