diff options
| author | Tyler Hoang <tyler@tylerhoang.xyz> | 2026-05-06 16:13:48 -0700 |
|---|---|---|
| committer | Tyler Hoang <tyler@tylerhoang.xyz> | 2026-05-06 16:13:48 -0700 |
| commit | 6d9d1bb0846064b4bae285c5bebbde908020661b (patch) | |
| tree | 1ffc5ed708ef4dd0f31909633812c1cf5e179041 | |
| parent | fc86eebc02cbd7a34593e6956584b4e32b7987ad (diff) | |
Add favicon to Lumière
- Create gold cinema-themed SVG favicon
- Add to base.html and profile.html templates
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
| -rw-r--r-- | static/favicon.svg | 13 | ||||
| -rw-r--r-- | templates/base.html | 1 | ||||
| -rw-r--r-- | templates/profile.html | 1 |
3 files changed, 15 insertions, 0 deletions
diff --git a/static/favicon.svg b/static/favicon.svg new file mode 100644 index 0000000..6929834 --- /dev/null +++ b/static/favicon.svg @@ -0,0 +1,13 @@ +<svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"> + <rect width="32" height="32" rx="6" fill="#0e0c0b"/> + <circle cx="16" cy="16" r="10" fill="none" stroke="#f0b84d" stroke-width="1.2"/> + <circle cx="16" cy="16" r="1.8" fill="#f0b84d"/> + <line x1="16" y1="6" x2="16" y2="4" stroke="#f0b84d" stroke-width="1.2" stroke-linecap="round"/> + <line x1="16" y1="28" x2="16" y2="26" stroke="#f0b84d" stroke-width="1.2" stroke-linecap="round"/> + <line x1="6" y1="16" x2="4" y2="16" stroke="#f0b84d" stroke-width="1.2" stroke-linecap="round"/> + <line x1="28" y1="16" x2="26" y2="16" stroke="#f0b84d" stroke-width="1.2" stroke-linecap="round"/> + <line x1="9.1" y1="9.1" x2="7.7" y2="7.7" stroke="#f0b84d" stroke-width="1.2" stroke-linecap="round"/> + <line x1="22.9" y1="22.9" x2="24.3" y2="24.3" stroke="#f0b84d" stroke-width="1.2" stroke-linecap="round"/> + <line x1="22.9" y1="9.1" x2="24.3" y2="7.7" stroke="#f0b84d" stroke-width="1.2" stroke-linecap="round"/> + <line x1="9.1" y1="22.9" x2="7.7" y2="24.3" stroke="#f0b84d" stroke-width="1.2" stroke-linecap="round"/> +</svg>
\ No newline at end of file diff --git a/templates/base.html b/templates/base.html index 1041c25..a3b54ef 100644 --- a/templates/base.html +++ b/templates/base.html @@ -4,6 +4,7 @@ <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>{% block title %}Lumière{% endblock %}</title> + <link rel="icon" href="/static/favicon.svg" type="image/svg+xml"> <link rel="stylesheet" href="/static/styles.css" /> <script src="{{ url_for('static', path='/app.js') }}" defer></script> </head> diff --git a/templates/profile.html b/templates/profile.html index 9fac27f..f697efe 100644 --- a/templates/profile.html +++ b/templates/profile.html @@ -4,6 +4,7 @@ <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Tyler's Film Diary - Lumière</title> + <link rel="icon" href="/static/favicon.svg" type="image/svg+xml"> <link rel="stylesheet" href="/static/styles.css" /> </head> <body> |
