1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- ---
- layout: null
- title : Atom Feed
- ---
- <?xml version="1.0" encoding="utf-8"?>
- <feed xmlns="http://www.w3.org/2005/Atom">
- <title type="text" xml:lang="en">
- {{ site.title | xml_escape }}
- </title>
- <link type="application/atom+xml" href="{{ site.baseurl | prepend: site.url }}/atom.xml" rel="self"/>
- <link href="{{ site.baseurl | prepend: site.url }}/"/>
- <updated>{{ site.time | date: "%Y-%m-%dT%H:%M:%SZ" }}</updated>
- <id>{{ site.baseurl | prepend: site.url }}/</id>
- <author>
- <name>
- {{ site.author.name }}
- </name>
- <uri>{{ site.author.website }}</uri>
- </author>
- <rights>
- Copyright © {{ site.time | date: "%Y" }} {{ site.author.name }}. {{ site.data.sites.licenses.by-sa-alt }}
- </rights>
- {% for post in site.posts limit:10 %}
- <entry>
- <title>
- {{ post.title | xml_escape }}
- </title>
- <link rel="alternate"
- type="text/html"
- href="{{ site.baseurl | prepend: site.url }}{{ post.url }}" />
- <author>
- {% if post.author %}
- {% assign author = page.author %}
- {% else %}
- {% assign author = site.author.name %}
- {% endif %}
- <name>
- {{ author }}
- </name>
- <uri>{% if post.author_site %}{{ post.author_site }}{% else %}{{ site.author.website }}{% endif %}</uri>
- </author>
- <summary>
- {{ post.description | xml_escape }}
- </summary>
- <content type="html">
- {{ post.content | markdownify | xml_escape }}>
- </content>
- <rights>
- Copyright © {{ site.time | date: "%Y" }} {{ author }}. {{ site.data.sites.licenses.by-sa-alt }}
- </rights>
- <published>{{ post.date | date: "%Y-%m-%dT%H:%M:%SZ" }}</published>
- <updated>{{ post.date | date_to_xmlschema }}</updated>
- <id>{{ site.baseurl | prepend: site.url }}{{ post.id }}</id>
- </entry>
- {% endfor %}
- </feed>
|