mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-11-01 15:55:03 -04:00
26 lines
809 B
XML
26 lines
809 B
XML
---
|
|
layout: nil
|
|
---
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
|
|
|
<title><![CDATA[{{ page.title }} | {{ site.title }}]]></title>
|
|
<link href="{{ site.url }}/{{ page.feed_url }}" rel="self"/>
|
|
<link href="{{ site.url }}/"/>
|
|
<updated>{{ site.time | date_to_xmlschema }}</updated>
|
|
<id>{{ site.url }}/</id>
|
|
<author>
|
|
<name><![CDATA[{{ site.author | strip_html }}]]></name>
|
|
{% if site.email %}<email><![CDATA[{{ site.email }}]]></email>{% endif %}
|
|
</author>
|
|
<generator uri="http://octopress.org/">Octopress</generator>
|
|
|
|
{% for post in site.categories[page.category] limit: 5 %}
|
|
<entry>
|
|
{% include feed_entry.xml %}
|
|
<content type="html"><![CDATA[{{ content | markdownify | cdata_escape }}]]></content>
|
|
</entry>
|
|
{% endfor %}
|
|
</feed>
|
|
|