aboutsummaryrefslogtreecommitdiff
path: root/feed.xml
diff options
context:
space:
mode:
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>