fix sitemap

Signed-off-by: Xe Iaso <me@christine.website>
This commit is contained in:
Cadey Ratio 2022-05-28 09:50:27 -04:00
parent 2d00c19205
commit 554dbbb53a
1 changed files with 7 additions and 1 deletions

View File

@ -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))?;
}