fix sitemap
Signed-off-by: Xe Iaso <me@christine.website>
This commit is contained in:
parent
2d00c19205
commit
554dbbb53a
|
@ -133,7 +133,13 @@ pub async fn init(cfg: PathBuf) -> Result<State> {
|
||||||
urlwriter.url(*url)?;
|
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))?;
|
urlwriter.url(format!("https://xeiaso.net/{}", post.link))?;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue