mirror of
https://github.com/kennethreitz-archive/winchestar-v2.git
synced 2026-06-21 15:40:58 +00:00
31 lines
1.0 KiB
XML
31 lines
1.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<feed xml:lang="en-US" xmlns:media="http://search.yahoo.com/mrss/" xmlns="http://www.w3.org/2005/Atom">
|
|
<id>tag:winchesterstar.com,2011-11-23:Posts</id>
|
|
<link type="text/html" rel="alternate" href="http://winchesterstar.com"/>
|
|
<link type="application/atom+xml" rel="self" href="http://winchestar.herokuapp.com/feed.atom"/>
|
|
<title>Winchester Star Articles</title>
|
|
<updated>2016-07-23T12:09:45-08:00</updated>
|
|
|
|
{% for article in articles %}
|
|
<entry>
|
|
<id>tag:winchesterstar.com:Post/{{ article.id }}</id>
|
|
<published>{{ article.rfc_published }}</published>
|
|
<updated>{{ article.rfc_published }}</updated>
|
|
<link type="text/html" rel="alternate" href="{{ article.link }}"/>
|
|
<title>{{ article.title }}</title>
|
|
<content type="html">
|
|
{{ article.body }}
|
|
</content>
|
|
|
|
|
|
<author>
|
|
{% if article.author %}
|
|
<name>{{ article.author }}</name>
|
|
{% endif %}
|
|
</author>
|
|
|
|
|
|
</entry>
|
|
{% endfor %}
|
|
|
|
</feed> |