<?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://marciniakmichal.pl</loc>
    </url>
    <?
    // Links
    foreach ($LINKS as $LINK) if (($LINK['section'] === 1 || $LINK['section'] === 2) && $LINK['frontpage'] === false && CoreService::IsPathExternal($LINK['path']) === false) {
        $path = $LINK['path'];
        if (CmsSiteService::CheckPathAccess($path, CmsSiteService::GetPathProtections($DATA['SETTINGS']['PATH_PROTECTIONS'], $LINKS)) === null) {
            echo '<url><loc>' . $CmsOutputService->BuildUrl($path, null, true) . '</loc></url>';
        }
        if ($LINK['sub'] === false && $LINK['showsublinks'] === true) {
            $SUBLINKS = CmsSiteService::GetAutoSublinks($LINK['path'], $LINK['template'], $LINK['reference_id'], $LINK['reference_type'], false, $CmsPortfolioService, $CmsTextService, $DATA);
            foreach ($SUBLINKS as $SUBLINK) if (CoreService::IsPathExternal($SUBLINK['path']) === false) {
                $path = $SUBLINK['path'];
                if (CmsSiteService::CheckPathAccess($path, CmsSiteService::GetPathProtections($DATA['SETTINGS']['PATH_PROTECTIONS'], $LINKS)) === null) {
                    echo '<url><loc>' . $CmsOutputService->BuildUrl($path, null, true) . '</loc></url>';
                }
            }
        }
    }
    ?>
                </urlset>