sitemap.liquid 601 B

1234567891011121314
  1. ---
  2. layout: null
  3. permalink: sitemap.xml
  4. ---
  5. <?xml version="1.0" encoding="UTF-8"?>
  6. <urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  7. {% for page in pages %}
  8. <url>
  9. <loc>{% if environment != 'development' %}{{ site.previewUrl }}{% endif %}{{ page.url | replace: 'index.html', '' | xml_escape }}</loc>
  10. <lastmod>{{ page.last_modified_at | default: 'now' | date_to_xmlschema }}</lastmod>
  11. </url>
  12. {% endfor %}
  13. </urlset>