diff --git a/src/app/mod.rs b/src/app/mod.rs index 87fec9c..7125cf8 100644 --- a/src/app/mod.rs +++ b/src/app/mod.rs @@ -133,7 +133,13 @@ pub async fn init(cfg: PathBuf) -> Result { urlwriter.url(*url)?; } - for post in &everything { + for post in &blog { + urlwriter.url(format!("https://xeiaso.net/{}", post.link))?; + } + for post in &gallery { + urlwriter.url(format!("https://xeiaso.net/{}", post.link))?; + } + for post in &talks { urlwriter.url(format!("https://xeiaso.net/{}", post.link))?; }