mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-11 23:55:16 +01:00
53 lines
1.9 KiB
XML
53 lines
1.9 KiB
XML
---
|
|
redirect_from:
|
|
- /home/feed/
|
|
- /feed/atom/
|
|
- /comments/feed/
|
|
---
|
|
<?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 href="{{ site.url }}/"/>
|
|
<updated>{{ site.time | date_to_xmlschema }}</updated>
|
|
<id>{{ site.url }}</id>
|
|
<author>
|
|
<name>{{ site.author }}</name>
|
|
<email>{{ site.email }}</email>
|
|
</author>
|
|
|
|
{% for post in site.posts limit:100 %}
|
|
<entry>
|
|
{% if post.layout == "link" %}
|
|
<title>{{ post.title | escape | titlecase }} →</title>
|
|
<link rel="alternate" type="text/html" href="{{ post.linkurl | escape }}" />
|
|
{% else %}
|
|
<title>{{ post.title | escape | titlecase }}</title>
|
|
<link rel="alternate" type="text/html" href="{{ site.url }}{{ post.url | escape }}" />
|
|
{% endif %}
|
|
|
|
<published>{{ post.date | date_to_xmlschema }}</published>
|
|
|
|
{% if post.updated %}
|
|
<updated>{{ post.updated | date_to_xmlschema }}</updated>
|
|
{% else %}
|
|
<updated>{{ post.date | date_to_xmlschema }}</updated>
|
|
{% endif %}
|
|
|
|
<id>{{ site.url }}{{ post.url | escape }}</id>
|
|
<content type="html">
|
|
{% if post.image %}
|
|
<img src="{{ site.url }}/media/{{ post.image }}" />
|
|
{% endif %}
|
|
|
|
{{ post.content | xml_escape }}
|
|
|
|
{% if post.layout == "link" %}
|
|
<a href="{{ post.linkurl | escape }}">Go to source &#187;</a> <br />
|
|
<a href="{{ site.url }}{{ post.url | escape }}" title="Permalink for this post">&#8734;</a>
|
|
{% endif %}
|
|
</content>
|
|
</entry>
|
|
{% endfor %}
|
|
</feed> |