n-channel

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

atom.xml (790B)


      1 ---
      2 layout: null
      3 ---
      4 
      5 <?xml version="1.0" encoding="utf-8"?>
      6 <feed xmlns="http://www.w3.org/2005/Atom">
      7 
      8  <title>{{ site.title }}</title>
      9  <link href="{{ site.url }}{{ site.baseurl }}/atom.xml" rel="self"/>
     10  <link href="{{ site.url }}{{ site.baseurl }}/"/>
     11  <updated>{{ site.time | date_to_xmlschema }}</updated>
     12  <id>{{ site.url }}</id>
     13  <author>
     14    <name>{{ site.author.name }}</name>
     15    <email>{{ site.author.email }}</email>
     16  </author>
     17 
     18  {% for post in site.posts %}
     19  <entry>
     20    <title>{{ post.title | xml_escape }}</title>
     21    <link href="{{ site.url }}{{ site.baseurl }}{{ post.url }}"/>
     22    <updated>{{ post.date | date_to_xmlschema }}</updated>
     23    <id>{{ site.url }}{{ post.id }}</id>
     24    <content type="html">{{ post.content | xml_escape }}</content>
     25  </entry>
     26  {% endfor %}
     27 
     28 </feed>