From 7c26f555f6d2429eab625c25aa439478999cb552 Mon Sep 17 00:00:00 2001 From: Panos Sakkos Date: Wed, 30 Sep 2015 23:34:42 +0200 Subject: [PATCH] Added baseurl in feed.xml --- feed.xml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/feed.xml b/feed.xml index 4d4838e40..f72f584d1 100644 --- a/feed.xml +++ b/feed.xml @@ -4,23 +4,23 @@ {{ site.title | xml_escape }} - {% if site.description %}{{ site.description | xml_escape }}{% endif %} - {{ site.url }} - + {% if site.description %}{{ site.description | xml_escape }}{% endif %} + {{site.url}}{{site.baseurl}} + {% for post in site.posts limit:10 %} - {{ post.title | xml_escape }} + {{post.title | xml_escape}} {% if post.author.name %} - {{ post.author.name | xml_escape }} - {% endif %} + {{post.author.name | xml_escape}} + {% endif %} {% if post.excerpt %} - {{ post.excerpt | xml_escape }} + {{post.excerpt | xml_escape}} {% else %} - {{ post.content | xml_escape }} + {{post.content | xml_escape}} {% endif %} {{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }} - {{ site.url }}{{ post.url }} - {{ site.url }}{{ post.url }} + {{site.url}}{{site.baseurl}}{{post.url}} + {{site.url}}{{site.baseurl}}{{post.url}} {% endfor %}