summaryrefslogtreecommitdiffstats
path: root/treffen.atom
diff options
context:
space:
mode:
Diffstat (limited to 'treffen.atom')
-rw-r--r--treffen.atom34
1 files changed, 0 insertions, 34 deletions
diff --git a/treffen.atom b/treffen.atom
deleted file mode 100644
index 7b3ad71..0000000
--- a/treffen.atom
+++ /dev/null
@@ -1,34 +0,0 @@
-{% meta %}
- isdir: False
- parent_tmpl: _empty.html
-{% endmeta %}
-
-{% block content -%}
-<?xml version="1.0" encoding="utf-8"?>
-<feed xmlns="https://www.w3.org/2005/Atom" xmlns:thr="https://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|filter_by_path('treffen/')|batch(5)|first %}
- <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 %}