<?php
/**
 * sitemap.xml – Dinamikus sitemap
 * Automatikusan generált, SEO barát XML sitemap
 */
header('Content-Type: application/xml; charset=utf-8');

$base_url  = 'https://kasslink.hu';
$today     = date('Y-m-d');

$pages = [
  ['/',              '1.0',  'daily',   $today],
  ['/about.php',     '0.8',  'monthly', $today],
  ['/services.php',  '0.9',  'weekly',  $today],
  ['/contact.php',   '0.7',  'monthly', $today],
  ['/docs.php',      '0.8',  'weekly',  $today],
  ['/impressum.php', '0.3',  'yearly',  $today],
  ['/privacy.php',   '0.4',  'yearly',  $today],
  ['/cookies.php',   '0.3',  'yearly',  $today],
  ['/barion.php',    '0.4',  'monthly', $today],
];

echo '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<?php foreach ($pages as $page): ?>
  <url>
    <loc><?= $base_url . $page[0] ?></loc>
    <priority><?= $page[1] ?></priority>
    <changefreq><?= $page[2] ?></changefreq>
    <lastmod><?= $page[3] ?></lastmod>
  </url>
<?php endforeach; ?>
</urlset>
