From 13949ed0d4006421934a9e2e6f91b3ec21222e25 Mon Sep 17 00:00:00 2001 From: cel 🌸 Date: Wed, 2 Apr 2025 03:38:44 +0100 Subject: fix feed urls --- src/atom.rs | 2 +- src/main.rs | 4 ++-- src/posts.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/atom.rs b/src/atom.rs index 11ae01d..ef98ce4 100644 --- a/src/atom.rs +++ b/src/atom.rs @@ -96,7 +96,7 @@ pub async fn atom>(ctx: Context, entries: Vec

Result { // TODO: i18n let context = atom::Context { page_title: "celeste's hard drive".to_owned(), - page_url: "https://en.blos.sm".to_owned(), - self_url: "https://en.blos.sm/feed".to_owned(), + page_url: "https://blos.sm".to_owned(), + self_url: "https://blos.sm/feed".to_owned(), lang: "en".to_owned(), }; let feed = atom::atom(context, posts).await; diff --git a/src/posts.rs b/src/posts.rs index 93c9179..e16b64f 100644 --- a/src/posts.rs +++ b/src/posts.rs @@ -20,7 +20,7 @@ pub trait Post { fn content(&self) -> &str; fn link(&self) -> String { - "https://en.blos.sm/posts/".to_owned() + self.id() + "https://blos.sm/posts/".to_owned() + self.id() } fn get_tags<'a>(posts: &'a Vec) -> Vec<&'a str> -- cgit