Skip to content
This repository has been archived by the owner on Jun 25, 2020. It is now read-only.

Commit

Permalink
Update Rss.liquid
Browse files Browse the repository at this point in the history
small z does not render the timezone.
  • Loading branch information
markvantilburg committed Oct 25, 2015
1 parent 5da2f8a commit dff7f8b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Pretzel.Logic/Resources/Liquid/Rss.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ layout: nil
<atom:link href="http://domain/rss.xml" rel="self" type="application/rss+xml" />
<description></description>
<language>en-au</language>
<pubDate>{{ site.time | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
<lastBuildDate>{{ site.time | date: "%a, %d %b %Y %H:%M:%S %z" }}</lastBuildDate>
<pubDate>{{ site.time | date: "%a, %d %b %Y %H:%M:%S %Z" }}</pubDate>
<lastBuildDate>{{ site.time | date: "%a, %d %b %Y %H:%M:%S %Z" }}</lastBuildDate>
{% for post in site.posts %}
<item>
<title>{{ post.title | xml_escape }}</title>
<link>http://domain{{ post.url }}</link>
<pubDate>{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
<pubDate>{{ post.date | date: "%a, %d %b %Y %H:%M:%S %Z" }}</pubDate>
<author>Author</author>
<guid>http://domain{{ post.url }}</guid>
<description>{{ post.content | xml_escape }}</description>
</item>
{% endfor %}
</channel>
</rss>
</rss>

0 comments on commit dff7f8b

Please sign in to comment.