mirror of
https://github.com/aljazceru/njump.git
synced 2026-01-18 05:44:26 +01:00
19 lines
609 B
XML
19 lines
609 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
|
<url>
|
|
{{if .npub}}<loc>https://nostr.com/{{.npub | escapeString}}</loc>{{end}}
|
|
{{if .hostname}}<loc>https://nostr.com/{{.hostname | escapeString}}</loc>{{end}}
|
|
<lastmod>{{.modifiedAt | escapeString}}</lastmod>
|
|
<changefreq>daily</changefreq>
|
|
<priority>0.8</priority>
|
|
</url>
|
|
{{range .lastNotes}}
|
|
<url>
|
|
<loc>https://nostr.com/{{.Nevent | escapeString}}</loc>
|
|
<lastmod>{{.ModifiedAt | escapeString}}</lastmod>
|
|
<changefreq>never</changefreq>
|
|
<priority>0.5</priority>
|
|
</url>
|
|
{{end}}
|
|
</urlset>
|