summaryrefslogtreecommitdiffstats
path: root/feed.atom
blob: 80819c943c51ce50fa570de313c9d7da2c92c250 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{% 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|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 %}