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 %}