From 52277d668752624e6542cf0fdc680a26687fbcf2 Mon Sep 17 00:00:00 2001 From: Keith Smith Date: Fri, 26 Dec 2025 20:09:41 -0700 Subject: [PATCH] Add favicon to web application MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added SVG favicon based on KeepItGoing app icon (white checkmark on blue #3B82F6 background). Favicon displays in browser tabs and bookmarks. Changes: - Created static/favicons/favicon.svg with app icon design - Updated templates/base.html with favicon link tags 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- static/favicons/favicon.svg | 6 ++++++ templates/base.html | 5 +++++ 2 files changed, 11 insertions(+) create mode 100644 static/favicons/favicon.svg diff --git a/static/favicons/favicon.svg b/static/favicons/favicon.svg new file mode 100644 index 0000000..aacd87f --- /dev/null +++ b/static/favicons/favicon.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/templates/base.html b/templates/base.html index 39b79b6..06dc8cd 100644 --- a/templates/base.html +++ b/templates/base.html @@ -5,6 +5,11 @@ {% block title %}KeepItGoing{% endblock %} + + + + + {% block extra_css %}{% endblock %}