Skip to content

Commit 0c13769

Browse files
committed
Removing date formatting to try to fix github error
Currently builds fine locally, but github reports: > The value 'nil' was passed to a date-related filter that expects valid dates in `feed.xml` or one of its layouts. This commit will be reverted when I find the underlying cause.
1 parent de02c20 commit 0c13769

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

feed.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ layout: null
88
<description>{{ site.description | xml_escape }}</description>
99
<link>{{ site.url }}{{ site.baseurl }}/</link>
1010
<atom:link href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" rel="self" type="application/rss+xml"/>
11-
<pubDate>{{ site.time | date_to_rfc822 }}</pubDate>
12-
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
11+
<pubDate>{{ site.time }}</pubDate>
12+
<lastBuildDate>{{ site.time }}</lastBuildDate>
1313
<generator>Jekyll v{{ jekyll.version }}</generator>
1414
{% for post in site.wikis limit:10 %}
1515
<item>
1616
<title>{{ post.title | xml_escape }}</title>
1717
<description>{{ post.content | xml_escape }}</description>
18-
<pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
18+
<pubDate>{{ post.date }}</pubDate>
1919
<link>{{ post.url | prepend: site.baseurl | prepend: site.url }}</link>
2020
<guid isPermaLink="true">{{ post.url | prepend: site.baseurl | prepend: site.url }}</guid>
2121
{% for tag in post.tags %}

0 commit comments

Comments
 (0)