25 lines
647 B
XML
25 lines
647 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
|
<title>$title$</title>
|
|
<link href="$link$"/>
|
|
<id>$id$</id>
|
|
<updated>$date$</updated>
|
|
<author>
|
|
<name>$author$</name>
|
|
</author>
|
|
$if(subtitle)$
|
|
<subtitle>$subtitle$</subtitle>
|
|
$endif$
|
|
$for(articles)$
|
|
<entry>
|
|
<title>$articles.title$</title>
|
|
<link href="$link$/$articles.filename$.html"/>
|
|
<id>$filename$</id>
|
|
<updated>$articles.date$</updated>
|
|
<author>
|
|
<name>$articles.author$</name>
|
|
</author>
|
|
<summary>$articles.summary$</summary>
|
|
</entry>
|
|
$endfor$
|
|
</feed>
|