<?xml version="1.0" encoding="UTF-8"?><urlset xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">
    <url>
        <loc>https://livinginabox.net</loc>
    </url>
    <?
    // Links
    foreach ($LINKS as $LINK) if (($LINK['section'] === 1 || $LINK['section'] === 2) && 
                                  ($LINK['frontpage'] === false) && 
                                  ($LINK['path'] !== null) && 
                                  (CmsUtils::IsPathRootRelative($LINK['path']))
                                 ) {
        $path = $LINK['path'];
        if ($CmsAccessService->CheckPathAccess($path, $SITE['PATHPROTECTIONS']) === null) {
            echo '<url><loc>' . $OR->BuildUrl($path, ['absolute' => true]) . '</loc></url>';
        }
        if ($LINK['sub'] === false && $LINK['showsublinks'] === true) {
            $SUBLINKS = $CmsLinksService->GenerateSublinks($LINK, $SITE, $SETTINGS, $LANG, ['CmsPhotosService' => $CmsPhotosService, 'CmsArticlesService' => $CmsArticlesService, 'OutputRenderer' => $OR, 'CmsAccessService' => $CmsAccessService]);
            foreach ($SUBLINKS as $SUBLINK) if (CmsUtils::IsPathRootRelative($SUBLINK['path'])) {
                $path = $SUBLINK['path'];
                if ($CmsAccessService->CheckPathAccess($path, $SITE['PATHPROTECTIONS']) === null) {
                    echo '<url><loc>' . $OR->BuildUrl($path, ['absolute' => true]) . '</loc></url>';
                }
            }
        }
    }
    ?>
                </urlset>