2013-11-21 00:02:57 +01:00
|
|
|
---
|
2013-11-21 00:44:52 +01:00
|
|
|
layout: nil
|
2013-11-21 00:02:57 +01:00
|
|
|
---
|
2013-11-21 00:44:52 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
|
|
|
|
|
|
|
<title type="text" xml:lang="en">{{ site.name }}</title>
|
|
|
|
<link type="application/atom+xml" href="{{ site.url }}/feed/" rel="self"/>
|
|
|
|
<link type="text" href="{{ site.url }}" rel="alternate"/>
|
|
|
|
<updated>{{ site.time | date_to_xmlschema }}</updated>
|
|
|
|
<id>{{ site.url }}</id>
|
|
|
|
<author>
|
|
|
|
<name>{{ site.author }}</name>
|
|
|
|
</author>
|
|
|
|
|
|
|
|
{% for post in site.posts limit:100 %}
|
|
|
|
<entry>
|
|
|
|
{% if post.layout == "link" %}
|
2013-12-15 13:30:25 +01:00
|
|
|
<title>{{ post.title | escape }} →</title>
|
2013-12-07 16:10:14 +01:00
|
|
|
<link>{{ post.linkurl | escape }}</link>
|
2013-11-21 00:44:52 +01:00
|
|
|
{% else %}
|
2013-12-15 13:30:25 +01:00
|
|
|
<title>{{ post.title | escape }}</title>
|
2013-12-07 16:10:14 +01:00
|
|
|
<link>{{ site.url }}/{{ post.url | escape }}</link>
|
2013-11-21 00:44:52 +01:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<published>{{ post.date | date_to_xmlschema }}</published>
|
|
|
|
|
2013-12-01 21:46:31 +01:00
|
|
|
{% if post.updated %}
|
|
|
|
<updated>{{ post.updated | date_to_xmlschema }}</updated>
|
2013-11-21 00:44:52 +01:00
|
|
|
{% endif %}
|
|
|
|
|
2013-12-07 16:10:14 +01:00
|
|
|
<id>{{ site.url }}/{{ post.url | escape }}</id>
|
2013-11-21 00:44:52 +01:00
|
|
|
<content type="html">
|
|
|
|
{% if post.image %}
|
2013-11-23 15:37:55 +01:00
|
|
|
<img src="{{ site.url }}/media/{{ post.image }}" />
|
2013-11-21 00:02:57 +01:00
|
|
|
{% endif %}
|
2013-11-21 00:44:52 +01:00
|
|
|
|
|
|
|
{{ post.content | xml_escape }}
|
|
|
|
|
|
|
|
{% if post.layout == "link" %}
|
2013-12-07 16:10:14 +01:00
|
|
|
<a class="more-link" href="{{ post.linkurl | escape }}">Go to source &#187;</a> <br />
|
|
|
|
<a href="{{ site.url }}/{{ post.url | escape }}" title="Permalink for this post">&#8734;</a>
|
2013-11-21 00:44:52 +01:00
|
|
|
{% endif %}
|
|
|
|
</content>
|
|
|
|
</entry>
|
|
|
|
{% endfor %}
|
|
|
|
</feed>
|