Created
September 15, 2012 06:05
-
-
Save esbullington/3726527 to your computer and use it in GitHub Desktop.
Jinja template for Atom feed
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<feed xmlns="http://www.w3.org/2005/Atom"> | |
<title>{{ site_title }}</title> | |
<link href="{{ feed_url }}" rel="self"/> | |
<link href="{{ site_url }}"/> | |
<updated>{{ updated }}</updated> | |
<id>{{ id }}</id> | |
{% for post in articles %} | |
<entry> | |
<title>{{ post.title }}</title> | |
<link href="{{ post.url }}"/> | |
<id>{{ post.atom_id }}</id> | |
<updated>{{ post.date }}</updated> | |
<summary type='html'>{{ post.summary | markdown }}</summary> | |
<!-- <content type="html"></content> --> | |
<author> | |
<name>{{ post.author_name }}</name> | |
</author> | |
</entry> | |
{% endfor %} | |
</feed> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment