<?xml version="1.0" encoding="UTF-8"?>
<!--
  BROKEN sitemap — reproduces audit issue: sitemap_noindex (alt / HTTP header variant)
  
  Unlike sitemap-noindex.xml (meta tag variant), the pages listed here have NO noindex
  meta tag in their HTML. The noindex instruction is set via the HTTP response header:
    X-Robots-Tag: noindex
  
  This is configured in the Cloudflare Pages _headers file.
  You CANNOT detect this by viewing page source — you must check response headers.
  
  Audit tools that check HTTP headers (not just HTML) will flag these as sitemap_noindex.
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">

  <!-- ✅ VALID — no noindex, no X-Robots-Tag header -->
  <url><loc>https://robots-txt-lab.pages.dev/</loc></url>

  <!-- ❌ NOINDEX via HTTP header (X-Robots-Tag: noindex) — NOT via meta tag -->
  <url><loc>https://robots-txt-lab.pages.dev/pdf-report.html</loc></url>
  <url><loc>https://robots-txt-lab.pages.dev/user-data-export.html</loc></url>
  <url><loc>https://robots-txt-lab.pages.dev/internal-dashboard.html</loc></url>

</urlset>
