Trailing slashes
This commit is contained in:
parent
97fde4ab8b
commit
96e5651fea
|
@ -15,7 +15,7 @@ use:
|
||||||
{% set pages = { 0: 'accessibility', 1: 'blog', 2: 'company-information', 3: 'contact', 4: 'services', 5: 'talks', 6: 'work' } %}
|
{% set pages = { 0: 'accessibility', 1: 'blog', 2: 'company-information', 3: 'contact', 4: 'services', 5: 'talks', 6: 'work' } %}
|
||||||
{% for page in pages %}
|
{% for page in pages %}
|
||||||
<url>
|
<url>
|
||||||
<loc>{{ site.url }}/{{ page }}</loc>
|
<loc>{{ site.url }}/{{ page }}/</loc>
|
||||||
<lastmod>{{ site.calculated_date|date('Y-m-d') }}</lastmod>
|
<lastmod>{{ site.calculated_date|date('Y-m-d') }}</lastmod>
|
||||||
<changefreq>monthly</changefreq>
|
<changefreq>monthly</changefreq>
|
||||||
<priority>0.6</priority>
|
<priority>0.6</priority>
|
||||||
|
@ -31,7 +31,7 @@ use:
|
||||||
|
|
||||||
{% 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>
|
||||||
|
|
Loading…
Reference in a new issue