From 25ec0c393796bb4c54a260d0185d077aa315d5a5 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Wed, 18 Mar 2026 18:34:15 +0800 Subject: [PATCH] feat: extract inline favicon to static SVG file Replace the inline data-URI emoji favicon with a proper Python-logo SVG served from /static/favicon.svg. Avoids repeated base64 encoding overhead and allows the icon to be cached and updated independently. Co-Authored-By: Claude --- website/static/favicon.svg | 6 ++++++ website/templates/base.html | 5 +---- 2 files changed, 7 insertions(+), 4 deletions(-) create mode 100644 website/static/favicon.svg diff --git a/website/static/favicon.svg b/website/static/favicon.svg new file mode 100644 index 0000000..660a7c6 --- /dev/null +++ b/website/static/favicon.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/website/templates/base.html b/website/templates/base.html index 4a3bc24..f8eb9e3 100644 --- a/website/templates/base.html +++ b/website/templates/base.html @@ -17,10 +17,7 @@ /> - +