diff options
| -rw-r--r-- | src/app/mod.rs | 8 |
1 files changed, 7 insertions, 1 deletions
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<State> { 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))?; } |
