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.

26 lines
676B

  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 category in categories %}
  16. <url>
  17. <loc>{{ category | safe }}</loc>
  18. </url>
  19. {% endfor %}
  20. {% for tag in tags %}
  21. <url>
  22. <loc>{{ tag | safe }}</loc>
  23. </url>
  24. {% endfor %}
  25. </urlset>