<?xml version="1.0" encoding="UTF-8"?>
<!--
  BROKEN sitemap — reproduces audit issue: sitemap_noindex
  These URLs return 200 OK, but each page has a noindex meta tag.
  Audit tools fetch each URL, read the <meta name="robots"> tag,
  and flag the contradiction: sitemap says "discover me", page says "don't index me".
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">

  <!-- ✅ VALID — returns 200, no noindex tag -->
  <url><loc>https://robots-txt-lab.pages.dev/</loc></url>

  <!-- ❌ NOINDEX CONTRADICTION — page returns 200 but has <meta name="robots" content="noindex"> -->
  <url><loc>https://robots-txt-lab.pages.dev/staging-page</loc></url>
  <url><loc>https://robots-txt-lab.pages.dev/admin-preview</loc></url>
  <url><loc>https://robots-txt-lab.pages.dev/draft-post</loc></url>

</urlset>
