Skip to content

Instantly share code, notes, and snippets.

@marcelotten
Created July 3, 2012 15:13
Show Gist options
  • Save marcelotten/3040355 to your computer and use it in GitHub Desktop.
Save marcelotten/3040355 to your computer and use it in GitHub Desktop.
Kirby XML-Sitemap
<?php
header('Content-type: text/xml; charset="utf-8"');
echo '<?xml version="1.0" encoding="utf-8"?>';
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<?php foreach($pages->index() as $p): ?>
<?php if($p->isVisible()): ?>
<url>
<loc><?php echo html($p->url()) ?></loc>
<lastmod><?php echo $p->modified('c') ?></lastmod>
<priority><?php echo ($p->isHomePage()) ? 1 : number_format(0.5/$p->depth(), 1) ?></priority>
</url>
<?php endif; ?>
<?php endforeach ?>
</urlset>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment