<?php
require_once __DIR__ . '/includes/core.php';
header('Content-Type: application/xml; charset=UTF-8');
$paths = ['/', '/videos/', '/service/', '/about/', '/contact/', '/privacy/'];
$today = date('Y-m-d');
echo '<?xml version="1.0" encoding="UTF-8"?>' . PHP_EOL;
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">
<?php foreach ($paths as $path): ?>
  <url>
    <loc><?= c17_e(c17_url($path)); ?></loc>
    <lastmod><?= c17_e($today); ?></lastmod>
    <changefreq><?= $path === '/' ? 'daily' : 'weekly'; ?></changefreq>
    <priority><?= $path === '/' ? '1.0' : '0.8'; ?></priority>
    <?php if ($path === '/'): ?>
    <image:image>
      <image:loc><?= c17_e(c17_url('/assets/images/17c-hero-video.jpg')); ?></image:loc>
      <image:title>17c视频教程首图</image:title>
      <image:caption>17c图片description动态包含当前访问域名：<?= c17_e(c17_host()); ?></image:caption>
    </image:image>
    <?php endif; ?>
  </url>
<?php endforeach; ?>
</urlset>
