aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Cleberg <hello@cleberg.net>2025-06-10 23:31:23 -0500
committerChristian Cleberg <hello@cleberg.net>2025-06-10 23:31:23 -0500
commit5c89edc7c3ef52910eeb0be9eafa1278f575ffe9 (patch)
tree0638c07bf2b60107a1bbb738bf0bbdfb805730c2
parent708ccec8b23ee1a89ae34943a4ff2368b2b5ba51 (diff)
downloadcleberg.net-5c89edc7c3ef52910eeb0be9eafa1278f575ffe9.tar.gz
cleberg.net-5c89edc7c3ef52910eeb0be9eafa1278f575ffe9.tar.bz2
cleberg.net-5c89edc7c3ef52910eeb0be9eafa1278f575ffe9.zip
feat: update favicon
-rw-r--r--theme/static/favicon.icobin3696 -> 28345 bytes
-rw-r--r--theme/static/favicon_dark.icobin3686 -> 0 bytes
-rw-r--r--theme/templates/base.html3
3 files changed, 1 insertions, 2 deletions
diff --git a/theme/static/favicon.ico b/theme/static/favicon.ico
index 399f17d..81f54ad 100644
--- a/theme/static/favicon.ico
+++ b/theme/static/favicon.ico
Binary files differ
diff --git a/theme/static/favicon_dark.ico b/theme/static/favicon_dark.ico
deleted file mode 100644
index aee46ba..0000000
--- a/theme/static/favicon_dark.ico
+++ /dev/null
Binary files differ
diff --git a/theme/templates/base.html b/theme/templates/base.html
index c993f97..daa43d0 100644
--- a/theme/templates/base.html
+++ b/theme/templates/base.html
@@ -12,8 +12,7 @@
{% if site_description is defined %}<meta name="description" content="{{ site_description }}" >{% endif %}
{% if site_keywords is defined %}<meta name="keywords" content="{{ site_keywords }}" >{% endif %}
<link rel="stylesheet" href="{{ url_for("static", file="styles.min.css") }}" type="text/css">
- <link rel="icon" type="image/x-icon" href="{{ url_for("static", file="favicon.ico") }}" media="(prefers-color-scheme: light)">
- <link rel="icon" type="image/x-icon" href="{{ url_for("static", file="favicon_dark.ico") }}" media="(prefers-color-scheme: dark)">
+ <link rel="icon" type="image/x-icon" href="{{ url_for("static", file="favicon.ico") }}">
{% block meta %}{% endblock %}
{% endblock %}
</head>