You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

24 lines
749 B

  1. ---
  2. ---
  3. <?xml version="1.0" encoding="UTF-8"?>
  4. <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">
  5. <url>
  6. <loc>{{ site.url }}/</loc>
  7. <lastmod>{{ site.time | date_to_xmlschema }}</lastmod>
  8. <changefreq>daily</changefreq>
  9. <priority>1.0</priority>
  10. </url>
  11. {% for page in site.html_pages %}
  12. {% if page.layout != "home" %}
  13. <url>
  14. <loc>{{ site.url }}{{ page.url }}</loc>
  15. <lastmod>{{ site.time | date_to_xmlschema }}</lastmod>
  16. <changefreq>weekly</changefreq>
  17. <priority>0.7</priority>
  18. </url>
  19. {% endif %}
  20. {% endfor %}
  21. </urlset>