mirror of
https://github.com/go-i2p/www.git
synced 2025-06-24 19:24:49 -04:00
17 lines
449 B
XML
17 lines
449 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
|
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
|
{%- for url in urls %}
|
|
<url>
|
|
<loc>{{ url_root }}{{ curlang }}{{ url.path }}</loc>
|
|
{%- for altlang in langs %}
|
|
<xhtml:link
|
|
rel="alternate"
|
|
hreflang="{{ altlang }}"
|
|
href="{{ url_root }}{{ altlang }}{{ url.path }}"
|
|
/>
|
|
{%- endfor %}
|
|
</url>
|
|
{%- endfor %}
|
|
</urlset>
|