<?php
// sitemap-video.xml
header('Content-Type: application/xml; charset=utf-8');
require_once 'includes/config.php';

$output = '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
$output .= '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:video="http://www.google.com/schemas/sitemap-video/1.1">' . "\n";

// You can add video sitemap entries here if you have videos
$output .= '  <!-- Add video entries here when available -->' . "\n";

$output .= '</urlset>';
echo $output;
?>