brouilleursdeblanc/feed.xml

48 lines
2.1 KiB
XML
Raw Normal View History

2013-06-25 20:19:49 +00:00
---
layout: none
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
2014-05-14 21:20:42 +00:00
{% if site.url != '' and
site.url | split: '/' | first != 'http:' and
site.url | split: '/' | first != 'https:'
%}
{% assign site_url = site.url | prepend: 'http:' %}
{% post_content = post.content | xml_escape | replace: site.url, url %}
{% else %}
{% assign site_url = site.url %}
{% post_content = post.content | xml_escape %}
{% endif %}
2013-06-25 20:19:49 +00:00
<title type="text">{{ site.title }}</title>
<generator uri="https://github.com/mojombo/jekyll">Jekyll</generator>
2014-05-14 21:20:42 +00:00
<link rel="self" type="application/atom+xml" href="{{ site_url }}/feed.xml" />
<link rel="alternate" type="text/html" href="{{ site_url }}/" />
2013-06-25 20:19:49 +00:00
<updated>{{ site.time | date_to_xmlschema }}</updated>
2014-05-14 21:20:42 +00:00
<id>{{ site_url }}/</id>
2013-06-25 20:19:49 +00:00
<author>
<name>{{ site.owner.name }}</name>
2014-05-14 21:20:42 +00:00
<uri>{{ site_url }}/</uri>
2013-06-25 20:19:49 +00:00
<email>{{ site.owner.email }}</email>
</author>
{% for post in site.posts limit:20 %}
<entry>
<title type="html"><![CDATA[{{ post.title | cdata_escape }}]]></title>
2014-05-14 21:20:42 +00:00
<link rel="alternate" type="text/html" href="{% if post.link %}{{ post.link }}{% else %}{{ site_url }}{{ post.url }}{% endif %}"/>
<id>{{ site_url }}{{ post.id }}</id>
2013-06-27 21:30:22 +00:00
{% if post.modified %}<updated>{{ post.modified | to_xmlschema }}T00:00:00-00:00</updated>
2013-06-25 20:19:49 +00:00
<published>{{ post.date | date_to_xmlschema }}</published>
2013-06-27 21:11:23 +00:00
{% else %}<published>{{ post.date | date_to_xmlschema }}</published>
<updated>{{ post.date | date_to_xmlschema }}</updated>{% endif %}
2013-06-25 20:19:49 +00:00
<author>
<name>{{ site.owner.name }}</name>
2014-05-14 21:20:42 +00:00
<uri>{{ site_url }}</uri>
2013-06-25 20:19:49 +00:00
<email>{{ site.owner.email }}</email>
</author>
2014-05-14 21:20:42 +00:00
{% for tag in post.tags %}<category scheme="{{ site_url }}/tags/#{{ tag | uri_escape }}" term="{{ tag }}" />{% endfor %}
<content type="html">{{ post_content }}
&lt;p&gt;&lt;a href=&quot;{{ site_url }}{{ post.url }}&quot;&gt;{{ post.title }}&lt;/a&gt; was originally published by {{ site.owner.name }} at &lt;a href=&quot;{{ site_url }}&quot;&gt;{{ site.title }}&lt;/a&gt; on {{ post.date | date: "%B %d, %Y" }}.&lt;/p&gt;</content>
2013-06-25 20:19:49 +00:00
</entry>
{% endfor %}
2013-08-12 17:35:31 +00:00
</feed>