forked from mathifold/mathifold_first_version
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsitemaps.xml
22 lines (21 loc) · 1.07 KB
/
sitemaps.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
layout:
permalink: /sitemaps.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">
<!-- post -->{% for p in site.posts %}
<url>
<loc>{{p.cleanurl | prepend: site.baseurl | prepend: site.url}}</loc>{% if p.lang %}{% assign ts=p.translations %}{% for t in ts %}
<xhtml:link rel="alternate" hreflang="{{ t.lang }}" href="{{t.cleanurl | prepend: site.baseurl | prepend: site.url}}" />{% endfor %}{% endif %}
<lastmod>{{ p.date | date_to_xmlschema }}</lastmod>
<changefreq>weekly</changefreq>
</url>{% endfor %}
<!-- pages -->{% for p in site.html_pages %}
<url>
<loc>{{p.cleanurl | prepend: site.baseurl | prepend: site.url}}</loc>{% if p.lang %}{% assign ts=p.translations %}{% for t in ts %}
<xhtml:link rel="alternate" hreflang="{{ t.lang }}" href="{{t.cleanurl | prepend: site.baseurl | prepend: site.url}}" />{% endfor %}{% endif %}{% if p.date %}
<lastmod>{{ p.date | date_to_xmlschema }}</lastmod>{% endif %}
<changefreq>weekly</changefreq>
</url>{% endfor %}
</urlset>