diff options
-rw-r--r-- | src/atom.rs | 2 | ||||
-rw-r--r-- | src/main.rs | 4 | ||||
-rw-r--r-- | 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<P: AsRef<dyn Post + Send + Sync>>(ctx: Context, entries: Vec<P logo: Some("/logo.png".into()), entries: Vec::new(), // TODO: determine base url from lang - base: Some("https://en.blos.sm/".into()), + base: Some("https://blos.sm/".into()), lang: Some(ctx.lang), ..Default::default() }; diff --git a/src/main.rs b/src/main.rs index ebc480e..7253a16 100644 --- a/src/main.rs +++ b/src/main.rs @@ -139,8 +139,8 @@ async fn feed() -> Result<Response> { // 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<Self>) -> Vec<&'a str> |