1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-09-24 10:08:50 +02:00
blog/_src/feed/index.xml

47 lines
1.7 KiB
XML
Raw Normal View History

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 }} &#8594;</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-15 15:03:06 +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-15 15:03:06 +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
&lt;img src=&quot;{{ site.url }}/media/{{ post.image }}&quot; /&gt;
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
&lt;a class=&quot;more-link&quot; href=&quot;{{ post.linkurl | escape }}&quot;&gt;Go to source &amp;#187;&lt;/a&gt; &lt;br /&gt;
2013-12-15 15:03:06 +01:00
&lt;a href=&quot;{{ site.url }}{{ post.url | escape }}&quot; title=&quot;Permalink for this post&quot;&gt;&amp;#8734;&lt;/a&gt;
2013-11-21 00:44:52 +01:00
{% endif %}
</content>
</entry>
{% endfor %}
</feed>