Flexible Lisp Blogware. Fork for personal use. Mirrored from https://github.com/kingcons/coleslaw originally.

sitemap.tmpl 309B

1234567891011121314
  1. {namespace coleslaw.theme.sitemap}
  2. {template sitemap}
  3. <?xml version="1.0"?>{\n}
  4. <urlset xmlns='http://www.sitemaps.org/schemas/sitemap/0.9'>
  5. {foreach $url in $urls}
  6. <url>
  7. <loc>{$config.domain}/{$url}</loc>
  8. <lastmod>{$pubdate}</lastmod>
  9. </url>
  10. {/foreach}
  11. </urlset>
  12. {/template}