<?
	//
	// Génération du fichier sitemap.xml
	//
	print ("<"."?".'xml version="1.0" encoding="UTF-8"'."?".">\n") ;
	print ('<urlset xmlns="http://www.google.com/schemas/sitemap/0.84">') ;

	print ("<url>\n") ;
	print ("<loc>http://gruson.net/index.php</loc>\n") ;
	print ("<lastmod>2012-08-01</lastmod>\n") ;
	print ("<changefreq>monthly</changefreq>\n") ;
	print ("<priority>1.0</priority>\n") ;
	print ("</url>\n") ;
	
	print ("</urlset>\n") ;
?>