Add favicon to web application

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 <noreply@anthropic.com>
This commit is contained in:
Keith Smith
2025-12-26 20:09:41 -07:00
co-authored by Claude Sonnet 4.5
parent f7586f2a93
commit f97227b2f1
2 changed files with 11 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
<!-- Background -->
<rect width="32" height="32" fill="#3B82F6" rx="4"/>
<!-- Checkmark -->
<path d="M13,22.17L8.83,18l-1.42,1.41L13,25 25,13l-1.41,-1.41z" fill="#FFFFFF"/>
</svg>

After

Width:  |  Height:  |  Size: 249 B

+5
View File
@@ -5,6 +5,11 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}KeepItGoing{% endblock %}</title>
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="{% static 'favicons/favicon.svg' %}">
<link rel="alternate icon" href="{% static 'favicons/favicon.svg' %}" type="image/svg+xml">
<link rel="stylesheet" href="{% static 'css/app.css' %}">
{% block extra_css %}{% endblock %}
</head>