|
|
|
@ -4,7 +4,7 @@ layout: nil
|
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
|
|
|
|
|
|
|
|
|
<title><![CDATA[{{ page.title }} | {{ site.title }}]]></title>
|
|
|
|
|
<title><![CDATA[{% if site.titlecase %}{{ page.title | titlecase }}{% else %}{{ page.title }}{% endif %} | {{ site.title }}]]></title>
|
|
|
|
|
<link href="{{ site.url }}/{{ page.feed_url }}" rel="self"/>
|
|
|
|
|
<link href="{{ site.url }}/"/>
|
|
|
|
|
<updated>{{ site.time | date_to_xmlschema }}</updated>
|
|
|
|
@ -17,7 +17,7 @@ layout: nil
|
|
|
|
|
|
|
|
|
|
{% for post in site.categories[page.category] limit: 5 %}
|
|
|
|
|
<entry>
|
|
|
|
|
<title type="html"><![CDATA[{{ post.title | cdata_escape }}]]></title>
|
|
|
|
|
<title type="html"><![CDATA[{% if site.titlecase %}{{ post.title | titlecase | cdata_escape }}{% else %}{{ post.title | cdata_escape }}{% endif %}]]></title>
|
|
|
|
|
<link href="{{ site.url }}{{ post.url }}"/>
|
|
|
|
|
<updated>{{ post.date | date_to_xmlschema }}</updated>
|
|
|
|
|
<id>{{ site.url }}{{ post.id }}</id>
|
|
|
|
|