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.

23 lines
628B

  1. <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  2. {% for page in pages %}
  3. <url>
  4. <loc>{{ page.permalink | safe }}</loc>
  5. {% if page.date %}
  6. <lastmod>{{ page.date }}</lastmod>
  7. {% endif %}
  8. </url>
  9. {% endfor %}
  10. {% for section in sections %}
  11. <url>
  12. <loc>{{ section.permalink | safe }}</loc>
  13. </url>
  14. {% endfor %}
  15. {% for taxonomy in taxonomies %}
  16. {% for entry in taxonomy %}
  17. <url>
  18. <loc>{{ entry.permalink | safe }}</loc>
  19. </url>
  20. {% endfor %}
  21. {% endfor %}
  22. </urlset>