adjusted date-format in sitemap (#6053)

Merge pull request 6053
This commit is contained in:
Sven Meyer 2017-04-27 17:28:35 +02:00 committed by jekyllbot
parent 0126f4ab5e
commit e5c0e91bc5
1 changed files with 2 additions and 2 deletions

View File

@ -457,7 +457,7 @@ search: exclude
{% for page in site.pages %}
<url>
<loc>{{page.url}}</loc>
<lastmod>{{site.time | date: '%Y-%B-%d' }}</lastmod>
<lastmod>{{site.time | date: '%Y-%m-%d' }}</lastmod>
<changefreq>daily</changefreq>
<priority>0.5</priority>
</url>
@ -466,7 +466,7 @@ search: exclude
{% for post in site.posts %}
<url>
<loc>{{post.url}}</loc>
<lastmod>{{site.time | date: '%Y-%B-%d' }}</lastmod>
<lastmod>{{site.time | date: '%Y-%m-%d' }}</lastmod>
<changefreq>daily</changefreq>
<priority>0.5</priority>
</url>