Skip to content

Commit

Permalink
adjusted date-format in sitemap (jekyll#6053)
Browse files Browse the repository at this point in the history
Merge pull request 6053
  • Loading branch information
meyer-sven authored and jekyllbot committed Apr 27, 2017
1 parent 0126f4a commit e5c0e91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/_tutorials/convert-existing-site-to-jekyll.md
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -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>
Expand Down

0 comments on commit e5c0e91

Please sign in to comment.