nevereverever.de/pandoc/atom-template.xml

28 lines
793 B
XML
Raw Normal View History

2026-03-09 12:16:56 +01:00
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>$title$</title>
<link href="$link$"/>
<id>$id$</id>
2026-03-10 16:15:37 +01:00
<updated>$updated$</updated>
<published>$date$</published>
2026-03-09 12:16:56 +01:00
<author>
<name>$author$</name>
</author>
$if(subtitle)$
<subtitle>$subtitle$</subtitle>
$endif$
$for(articles)$
<entry>
<title>$articles.title$</title>
<link href="$link$/$articles.filename$.html"/>
2026-03-09 12:23:49 +01:00
<id>$articles.filename$</id>
2026-03-10 16:15:37 +01:00
<updated>$if(articles.updated)$$articles.updated$$else$$articles.date$$endif$</updated>
<published>$articles.date$</published>
2026-03-09 12:16:56 +01:00
<author>
<name>$articles.author$</name>
</author>
<summary>$articles.summary$</summary>
</entry>
$endfor$
</feed>