aboutsummaryrefslogtreecommitdiff
path: root/feed.xml
diff options
context:
space:
mode:
authorGravatar Barry Clark <barry@barryclark.co> 2014-06-01 14:54:52 -0400
committerGravatar Barry Clark <barry@barryclark.co> 2014-06-01 14:54:52 -0400
commit790d93f3ed74d4146b116edde570896df173c50a (patch)
tree6dd29c9ae9321b5ba9769805807a8816ea494a07 /feed.xml
parent59d40125846874759a4847ad1c91c7fe4ed690d0 (diff)
downloadkompetenzbolzen.github.io-790d93f3ed74d4146b116edde570896df173c50a.tar.gz
Fixed URL links in RSS feed
Diffstat (limited to 'feed.xml')
-rw-r--r--feed.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/feed.xml b/feed.xml
index 899221c..15b90dd 100644
--- a/feed.xml
+++ b/feed.xml
@@ -6,15 +6,15 @@ layout: none
<channel>
<title>{{ site.name | xml_escape }}</title>
<description>{{ site.description | xml_escape }}</description>
- <link>{{ site.footer-links.rss }}</link>
- <atom:link href="{{ site.footer-links.rss }}/feed.xml" rel="self" type="application/rss+xml" />
+ <link>{{ site.url }}</link>
+ <atom:link href="{{ site.url }}/feed.xml" rel="self" type="application/rss+xml" />
{% for post in site.posts limit:10 %}
<item>
<title>{{ post.title | xml_escape }}</title>
<description>{{ post.content | xml_escape }}</description>
<pubDate>{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
- <link>{{ site.footer-links.rss }}/{{ post.url }}</link>
- <guid isPermaLink="true">{{ site.footer-links.rss }}/{{ post.url }}</guid>
+ <link>{{ site.url }}/{{ post.url }}</link>
+ <guid isPermaLink="true">{{ site.url }}/{{ post.url }}</guid>
</item>
{% endfor %}
</channel>