diff options
-rw-r--r-- | src/atom.rs | 2 | ||||
-rw-r--r-- | static/favicon.png (renamed from static/favicon.ico) | bin | 14927 -> 14927 bytes | |||
-rw-r--r-- | templates/base.html | 1 |
3 files changed, 2 insertions, 1 deletions
diff --git a/src/atom.rs b/src/atom.rs index 6e2cd1a..11ae01d 100644 --- a/src/atom.rs +++ b/src/atom.rs @@ -91,7 +91,7 @@ pub async fn atom<P: AsRef<dyn Post + Send + Sync>>(ctx: Context, entries: Vec<P uri: Some("https://bunny.garden/cel/blossom".into()), version: None, }), - icon: Some("/favicon.ico".into()), + icon: Some("/static/favicon.png".into()), links: links.clone(), logo: Some("/logo.png".into()), entries: Vec::new(), diff --git a/static/favicon.ico b/static/favicon.png Binary files differindex 860d791..860d791 100644 --- a/static/favicon.ico +++ b/static/favicon.png diff --git a/templates/base.html b/templates/base.html index 63068fd..3912833 100644 --- a/templates/base.html +++ b/templates/base.html @@ -6,6 +6,7 @@ <meta name="viewport" content="width=device-width, initial-scale=1" /> <link rel="stylesheet" href="/static/style.css"> <link rel="stylesheet" href="/static/fonts.css"> + <link rel="icon" type="image/png" href="/static/favicon.png" /> <title>celeste's hard drive</title> </head> |