You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- ---
- layout: nil
- ---
- <?xml version="1.0" encoding="utf-8"?>
- <feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
-
- <title type="text">{{ site.title }}</title>
- <generator uri="http://jekyllrb.com/">Jekyll</generator>
- <link rel="self" type="application/atom+xml" href="{{ site.url }}/atom.xml"/>
- <link rel="alternate" type="text/html" href="{{ site.url }}"/>
- <updated>{{ site.time | date_to_xmlschema }}</updated>
- <id>{{ site.url }}/</id>
- <author>
- <name>{{ site.owner.name }}</name>
- <uri>{{ site.url }}/</uri>
- <email>{{ site.owner.email }}</email>
- </author>
-
- {% for post in site.posts limit:20 %}
- <entry>
- <id>{{ site.url }}{{ post.id }}</id>
- <link type="text/html" rel="alternate" href="{{ site.url }}{{ post.url }}"/>
- <title type="html"><![CDATA[{{ post.title | cdata_escape }}]]></title>
- <published>{{ post.date | date_to_xmlschema }}</published>
- <updated>{% if post.modified %}{{ post.modified | to_xmlschema }}T00:00:00-00:00{% else %}{{ post.date | date_to_xmlschema }}{% endif %}</updated>
- <author>
- <name>{{ site.owner.name }}</name>
- <uri>{{ site.url }}/</uri>
- <email>{{ site.owner.email }}</email>
- </author>
- <content type="html">{{ post.content | xml_escape }}
- <p><a href="{{ site.url }}{{ post.url }}">{{ post.title }}</a> was originally published by {{ site.owner.name }} at <a href="{{ site.url }}/">{{ site.title }}</a> on {{ post.date | date: "%B %d, %Y" }}.</p></content>
- </entry>
- {% endfor %}
-
- </feed>
|