Skip to content

Commit b16fc8f

Browse files
committed
rev_news: correct urls in rss feed
1 parent c96e20c commit b16fc8f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

feed.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ navbar: false
1515
<channel>
1616
<title xml:lang="en">Git Rev News</title>
1717
<atom:link type="application/atom+xml" href="http://git.github.io/feed.xml" rel="self"/>
18-
<link>http://git.github.io/rev_news</link>
18+
<link>http://git.github.io/rev_news/</link>
1919
<pubDate>{{ site.time | date_to_rfc822 }}</pubDate>
2020
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
2121
<language>en-US</language>
@@ -25,14 +25,14 @@ navbar: false
2525
<description>Git Rev News</description>
2626
<url>http://jekyllrb.com/img/logo-rss.png</url>
2727
<title>Git Rev News</title>
28-
<link>http://git.github.io/rev_news</link>
28+
<link>http://git.github.io/rev_news/</link>
2929
<width>144</width>
3030
<height>73</height>
3131
</image>
3232
{% for post in site.posts %}
3333
<item>
3434
<title>{{ post.title | xml_escape}}</title>
35-
<link>http://git.github.io/rev_news{{ post.url }}</link>
35+
<link>http://git.github.io{{ post.url }}</link>
3636
<pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
3737
<dc:creator>{{ post.author }}</dc:creator>
3838
{% for tag in post.tags %}
@@ -41,7 +41,7 @@ navbar: false
4141
{% for cat in post.categories %}
4242
<category>{{ cat | xml_escape }}</category>
4343
{% endfor %}
44-
<guid isPermaLink="true">http://git.github.io/rev_news{{ post.url }}</guid>
44+
<guid isPermaLink="true">http://git.github.io{{ post.url }}</guid>
4545
<description>{{ post.content | xml_escape }}</description>
4646
</item>
4747
{% endfor %}

0 commit comments

Comments
 (0)