27 lines
793 B
XML
27 lines
793 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>$updated$</updated>
|
|
<published>$date$</published>
|
|
<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>$articles.filename$</id>
|
|
<updated>$if(articles.updated)$$articles.updated$$else$$articles.date$$endif$</updated>
|
|
<published>$articles.date$</published>
|
|
<author>
|
|
<name>$articles.author$</name>
|
|
</author>
|
|
<summary>$articles.summary$</summary>
|
|
</entry>
|
|
$endfor$
|
|
</feed>
|