<?xml version="1.0" encoding="UTF-8"?>
<!--
  Indice de sitemaps. Es un archivo estatico (vive en public/) porque tiene que
  responder si o si en la raiz del dominio, que es donde lo apunta robots.txt.

  Los dos hijos dinamicos los genera el backend Go (routes/sitemap_routes.go) y
  necesitan un location en nginx que reenvie /sitemap-auctions.xml y
  /sitemap-categories.xml al backend. Hasta que ese location exista, el SPA
  responde index.html en esas rutas y Search Console las va a marcar como error;
  sitemap-static.xml funciona igual desde el primer deploy.
-->
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <sitemap>
    <loc>https://susubasta.com.ar/sitemap-static.xml</loc>
  </sitemap>
  <sitemap>
    <loc>https://susubasta.com.ar/sitemap-auctions.xml</loc>
  </sitemap>
  <sitemap>
    <loc>https://susubasta.com.ar/sitemap-auctions-closed.xml</loc>
  </sitemap>

  <sitemap>
    <loc>https://susubasta.com.ar/sitemap-categories.xml</loc>
  </sitemap>
</sitemapindex>
