diff options
author | Christian Cleberg <hello@cleberg.net> | 2025-06-10 23:31:23 -0500 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2025-06-10 23:31:23 -0500 |
commit | 5c89edc7c3ef52910eeb0be9eafa1278f575ffe9 (patch) | |
tree | 0638c07bf2b60107a1bbb738bf0bbdfb805730c2 | |
parent | 708ccec8b23ee1a89ae34943a4ff2368b2b5ba51 (diff) | |
download | cleberg.net-5c89edc7c3ef52910eeb0be9eafa1278f575ffe9.tar.gz cleberg.net-5c89edc7c3ef52910eeb0be9eafa1278f575ffe9.tar.bz2 cleberg.net-5c89edc7c3ef52910eeb0be9eafa1278f575ffe9.zip |
feat: update favicon
-rw-r--r-- | theme/static/favicon.ico | bin | 3696 -> 28345 bytes | |||
-rw-r--r-- | theme/static/favicon_dark.ico | bin | 3686 -> 0 bytes | |||
-rw-r--r-- | theme/templates/base.html | 3 |
3 files changed, 1 insertions, 2 deletions
diff --git a/theme/static/favicon.ico b/theme/static/favicon.ico Binary files differindex 399f17d..81f54ad 100644 --- a/theme/static/favicon.ico +++ b/theme/static/favicon.ico diff --git a/theme/static/favicon_dark.ico b/theme/static/favicon_dark.ico Binary files differdeleted file mode 100644 index aee46ba..0000000 --- a/theme/static/favicon_dark.ico +++ /dev/null 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> |