Remove duplicate trailing slashes
This commit is contained in:
parent
9a7fa0d691
commit
20e33a2f45
|
@ -30,7 +30,7 @@ use: [posts, talks]
|
||||||
|
|
||||||
{% for post in data.posts %}
|
{% for post in data.posts %}
|
||||||
<url>
|
<url>
|
||||||
<loc>{{ site.url }}{{ post.url }}/</loc>
|
<loc>{{ site.url }}{{ post.url }}</loc>
|
||||||
<lastmod>{{ post.date|date('c') }}</lastmod>
|
<lastmod>{{ post.date|date('c') }}</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>1.0</priority>
|
<priority>1.0</priority>
|
||||||
|
@ -39,7 +39,7 @@ use: [posts, talks]
|
||||||
|
|
||||||
{% for talk in data.talks if not talk.hide_page %}
|
{% for talk in data.talks if not talk.hide_page %}
|
||||||
<url>
|
<url>
|
||||||
<loc>{{ site.url }}{{ talk.url }}/</loc>
|
<loc>{{ site.url }}{{ talk.url }}</loc>
|
||||||
<lastmod>{{ talk.date|date('c') }}</lastmod>
|
<lastmod>{{ talk.date|date('c') }}</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>1.0</priority>
|
<priority>1.0</priority>
|
||||||
|
|
Loading…
Reference in a new issue