<?php
require_once __DIR__ . '/../private/inc/config.php';
require_once __DIR__ . '/../private/inc/functions.php';
header('Content-Type: application/xml; charset=UTF-8');
echo '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<?= sitemap_url(SITE_URL . '/', '1.0', 'weekly') ?>
<?= sitemap_url(SITE_URL . '/about', '0.3', 'yearly') ?>
<?= sitemap_url(SITE_URL . '/privacy', '0.3', 'yearly') ?>
<?= sitemap_url(SITE_URL . '/terms', '0.3', 'yearly') ?>
<?php foreach (get_all_appliances() as $a): ?>
<?= sitemap_url(SITE_URL . '/' . esc($a['slug']), '0.8', 'monthly') ?>
<?php endforeach; ?>
</urlset>
