<?xml version="1.0" encoding="UTF-8"?>
<!--
  Future Technology — Google News Sitemap
  ========================================
  INSTRUCTIONS:
  1. Host at https://futuretechnologyhq.com/news-sitemap.xml
  2. Only include articles published within the last 48 hours
     (Google News ignores articles older than 2 days in news sitemaps)
  3. Maximum 1,000 URLs per news sitemap
  4. Reference this sitemap in robots.txt AND your main sitemap index
  5. Auto-generate this dynamically from your CMS/publishing system
  6. Update immediately when a new article is published

  NAMESPACE REQUIRED:
  xmlns:news="http://www.google.com/schemas/sitemap-news/0.9"
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
        xmlns:news="http://www.google.com/schemas/sitemap-news/0.9"
        xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">

  <!-- ARTICLE ENTRY TEMPLATE — repeat for each article published in last 48hrs -->
  <url>
    <loc>https://futuretechnologyhq.com/{{ARTICLE_SLUG}}</loc>
    <lastmod>{{ISO_8601_DATE e.g. 2026-07-10T09:00:00+00:00}}</lastmod>
    <news:news>
      <news:publication>
        <news:name>Future Technology</news:name>
        <news:language>en</news:language>
      </news:publication>
      <news:publication_date>{{ISO_8601_DATE e.g. 2026-07-10T09:00:00+00:00}}</news:publication_date>
      <news:title>{{ARTICLE_HEADLINE — must match the on-page headline exactly}}</news:title>
      <!--
        OPTIONAL but recommended tags:
        <news:keywords>AI, machine learning, technology</news:keywords>
        <news:stock_tickers>NASDAQ:GOOG, NASDAQ:AAPL</news:stock_tickers>
      -->
    </news:news>
    <image:image>
      <image:loc>https://futuretechnologyhq.com/images/{{ARTICLE_IMAGE}}.jpg</image:loc>
      <image:caption>{{IMAGE_ALT_TEXT}}</image:caption>
    </image:image>
  </url>

  <!-- EXAMPLE: Real article entry -->
  <url>
    <loc>https://futuretechnologyhq.com/claude-4-release-date-features-pricing</loc>
    <lastmod>2026-07-10T09:00:00+00:00</lastmod>
    <news:news>
      <news:publication>
        <news:name>Future Technology</news:name>
        <news:language>en</news:language>
      </news:publication>
      <news:publication_date>2026-07-10T09:00:00+00:00</news:publication_date>
      <news:title>Claude 4 Release Date, Features, and Pricing — Everything We Know</news:title>
    </news:news>
    <image:image>
      <image:loc>https://futuretechnologyhq.com/images/claude-4-hero.jpg</image:loc>
      <image:caption>Claude 4 AI assistant interface showing new features</image:caption>
    </image:image>
  </url>

</urlset>
