fix: feed dates
This commit is contained in:
parent
4cf0574bdb
commit
b5d1f8b60e
1 changed files with 2 additions and 1 deletions
|
@ -5,6 +5,7 @@
|
||||||
<title>{{ title }}</title>
|
<title>{{ title }}</title>
|
||||||
<description>{{ description }}</description>
|
<description>{{ description }}</description>
|
||||||
<link>{{ permalink | absoluteUrl: site.url }}</link>
|
<link>{{ permalink | absoluteUrl: site.url }}</link>
|
||||||
|
<lastBuildDate>{{ updated }}</lastBuildDate>
|
||||||
<image>
|
<image>
|
||||||
<title>{{ title }}</title>
|
<title>{{ title }}</title>
|
||||||
<link>{{ permalink | absoluteUrl: site.url }}</link>
|
<link>{{ permalink | absoluteUrl: site.url }}</link>
|
||||||
|
@ -16,7 +17,7 @@
|
||||||
<item>
|
<item>
|
||||||
<title>{{ entry.title | escape }}</title>
|
<title>{{ entry.title | escape }}</title>
|
||||||
<link>{{ entry.url | stripUtm | encodeAmp }}</link>
|
<link>{{ entry.url | stripUtm | encodeAmp }}</link>
|
||||||
<pubDate>{{ entry.date }}</pubDate>
|
<pubDate>{{ entry.date | stringToDate | dateToRfc822 }}</pubDate>
|
||||||
<guid>{{ entry.url | stripUtm | encodeAmp }}</guid>
|
<guid>{{ entry.url | stripUtm | encodeAmp }}</guid>
|
||||||
<description>{{ entry.excerpt | markdown | escape }}</description>
|
<description>{{ entry.excerpt | markdown | escape }}</description>
|
||||||
</item>
|
</item>
|
||||||
|
|
Reference in a new issue