summaryrefslogtreecommitdiffstats
path: root/feed.atom
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2013-03-13 01:53:05 +0100
committerAlexander Sulfrian <alexander@sulfrian.net>2013-03-13 02:00:23 +0100
commitaa87381d3ca7d0abb126aeaded36bb1a813279ea (patch)
tree71f0fdf4c3e3f6017de63d6e7b6478582b591806 /feed.atom
parentd5eb370211a21f77bf49fa187788d7ec7b971640 (diff)
downloadwww-aa87381d3ca7d0abb126aeaded36bb1a813279ea.tar.gz
www-aa87381d3ca7d0abb126aeaded36bb1a813279ea.tar.bz2
www-aa87381d3ca7d0abb126aeaded36bb1a813279ea.zip
feed.atom: add atom feed to page
Diffstat (limited to 'feed.atom')
-rw-r--r--feed.atom34
1 files changed, 34 insertions, 0 deletions
diff --git a/feed.atom b/feed.atom
new file mode 100644
index 0000000..62a33b2
--- /dev/null
+++ b/feed.atom
@@ -0,0 +1,34 @@
+{% meta %}
+ isdir: False
+ parent_tmpl: _empty.html
+{% endmeta %}
+
+{% block content -%}
+<?xml version="1.0" encoding="utf-8"?>
+<feed xmlns="http://www.w3.org/2005/Atom" xmlns:thr="http://purl.org/syndication/thread/1.0">
+ <id>{{ site.url }}</id>
+ <title>{{ site.title }}</title>
+ {% if site.latest_post -%}
+ <updated>{{ site.latest_post.mtime|rfc3339 }}</updated>
+ {%- endif %}
+ <author>
+ <name>{{ site.author }}</name>
+ </author>
+ <link href="{{ site.url }}" rel="alternate"></link>
+ <generator uri="http://hg.piranha.org.ua/cyrax/">cyrax</generator>
+
+{%- for post in site.posts[:10] %}
+ <entry>
+ <id>{{ post.get_absolute_url() }}</id>
+ <title type="html">{{ post.title|e }}</title>
+ <updated>{{ post.updated|default(post.date)|rfc3339 }}</updated>
+ <published>{{ post.date|rfc3339 }}</published>
+ {% for tag in post.tags -%}
+ <category term="{{ tag }}"></category>
+ {%- endfor %}
+ <link href="{{ post.get_absolute_url() }}" rel="alternate"></link>
+ <content type="html">{{ post.body|e }}</content>
+ </entry>
+{% endfor %}
+</feed>
+{%- endblock %}