The code and data behind xeiaso.net
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix sitemap

Signed-off-by: Xe Iaso <me@christine.website>

Xe Iaso 554dbbb5 2d00c192

+7 -1
+7 -1
src/app/mod.rs
··· 133 133 urlwriter.url(*url)?; 134 134 } 135 135 136 - for post in &everything { 136 + for post in &blog { 137 + urlwriter.url(format!("https://xeiaso.net/{}", post.link))?; 138 + } 139 + for post in &gallery { 140 + urlwriter.url(format!("https://xeiaso.net/{}", post.link))?; 141 + } 142 + for post in &talks { 137 143 urlwriter.url(format!("https://xeiaso.net/{}", post.link))?; 138 144 } 139 145