This commit is contained in:
realaravinth
2021-07-21 22:15:52 +05:30
parent 257b3a2b88
commit e9e6aac770
14 changed files with 156 additions and 41 deletions

11
templates/sitemap.html Normal file
View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<. for url in urls.iter(){ .>
<url>
<loc><.= url .></loc>
<lastmod><.= crate::COMPILED_DATE .></lastmod>
<changefreq>weekly</changefreq>
<priority>0.8</priority>
</url>
<. } .>
</urlset>