aboutsummaryrefslogtreecommitdiffstats
path: root/src/posts.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/posts.rs')
-rw-r--r--src/posts.rs2
1 files changed, 1 insertions, 1 deletions
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>