<?xml version="1.0" encoding="UTF-8"?>
<!--
  Sitemap index — this file is served statically by the frontend static
  handler (the K8s ingress routes `/*` to the React build; only `/api/*`
  reaches FastAPI, so a direct FastAPI-served `/sitemap.xml` cannot
  intercept the root path).

  We publish a two-level sitemap: this static index points at the
  dynamic sitemap generated by `/api/sitemap.xml`, which enumerates all
  blog posts, pillar pages, programmatic pages and language variants at
  request time. Crawlers (Google, Bing, Yandex, DuckDuckGo) follow
  <sitemap><loc> transparently — no JS execution or HTTP redirect
  required, and every re-crawl picks up newly published content
  automatically because /api/sitemap.xml queries MongoDB live.

  If you need to add a second sitemap (e.g. a news sitemap or an
  images sitemap), append another <sitemap> block below.
-->
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <sitemap>
    <loc>https://virvid.io/api/sitemap.xml</loc>
  </sitemap>
</sitemapindex>
