blog/templates/sitemap.xml
Sanchayan Maity 01d0d50249 Initial commit for blog migration to Hakyll
Never gave a damn about jekyll/ruby except to use it for github pages.
Now use Hakyll/Haskell and migrate from jekyll/ruby.
2017-02-14 02:00:46 +05:30

12 lines
337 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
$for(posts)$
<url>
<loc>http://sanchayanmaity.github.io$url$</loc>
<changefreq>weekly</changefreq>
$if(dateMap)$<lastmod>$dateMap$</lastmod>$endif$
<priority>0.8</priority>
</url>
$endfor$
</urlset>