mirror of
https://github.com/transatoshi-mw/grin-web-wallet.git
synced 2025-10-06 15:52:47 +00:00
16 lines
382 B
XML
Executable File
16 lines
382 B
XML
Executable File
<?php
|
|
|
|
// Main function
|
|
|
|
// Set content type header
|
|
header("Content-Type: text/xml; charset=" . mb_internal_encoding());
|
|
|
|
?><?xml version="1.0" encoding="UTF-8"?>
|
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
|
<url>
|
|
<loc>https://<?= rawurlencode($_SERVER["SERVER_NAME"]); ?>/</loc>
|
|
<changefreq>yearly</changefreq>
|
|
<priority>1.0</priority>
|
|
</url>
|
|
</urlset>
|