aboutsummaryrefslogtreecommitdiff
path: root/templates/atom.xml
blob: 80e2489f836e12d8dd02771a1f3fb9f8dd1c120e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <author>
    <name>$author$</name>
    <email>$email$</email>
  </author>
  <title>$title$</title>
  <id>$url$/</id>
  <link rel="self" href="$url$/atom.xml" />
  <updated>$updated$</updated>

  $for(versions)$
  $if(versions.date_atom)$
  <entry>
    <id>$url$/archive/$versions.id$</id>
    <title>$version$ $versions.id$</title>
    <updated>$versions.date_atom$</updated>
    <link href="$url$/archive/$versions.id$" />
    <summary>$versions.summary$</summary>
  </entry>
  $endif$
  $endfor$
</feed>