Blob caca/theme/atom.xml.html
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
{%- from "macros.html" import feed_entry -%}
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>{{ repo.name }} activity feed</title>
{% if repo.description %}
<subtitle>{{ repo.description }}</subtitle>
{% endif %}
<updated>{{ updated }}</updated>
<link href="{{ baseurl|safe }}" />
<id>{{ baseurl|safe }}</id>
{% for e in entries %}
{{ feed_entry(e) }}
{% endfor %}
</feed>
|