26 lines
860 B
XML
26 lines
860 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
|
|
|
<title>okoyono.de -- Buch des Monats</title>
|
|
<link href="https://buchdesmonats.okoyono.de/"/>
|
|
<updated>{{ (index .Items 0).Date }}T00:00:00Z</updated>
|
|
<author>
|
|
<name>Michael Reutter</name>
|
|
</author>
|
|
<id>urn:uuid:{{ (index .Items 0).ISBN }}</id>
|
|
|
|
{{ range .Items }}
|
|
<entry>
|
|
<title>{{ .Author | html }} - "{{ .Title | html }}"</title>
|
|
<link href="https://www.buchhandel.de/buch/{{ .ISBN }}"/>
|
|
<id>urn:uuid:{{ .ISBN }}</id>
|
|
<updated>{{ .Date }}T00:00:00Z</updated>
|
|
<summary>{{ .Author | html }} - "{{ .Title | html }}</summary>
|
|
<content type="xhtml">
|
|
<div xmlns="http://www.w3.org/1999/xhtml">
|
|
<img src="https://buchdesmonats.okoyono.de/covers/{{ .ISBN }}.jpg"/>
|
|
</div>
|
|
</content>
|
|
</entry>
|
|
{{ end }}
|
|
</feed>
|