17 lines
507 B
XML
17 lines
507 B
XML
<?xml version="1.0" encoding="UTF-8"?><feed xmlns="http://www.w3.org/2005/Atom">
|
|
<title>{{.app.Host}} news</title>
|
|
<updated>{{.updated}}</updated>
|
|
<subtitle>News and updates about my projects and self-hosted services</subtitle>
|
|
<link href="{{.app.JoinPath "/news"}}"></link>
|
|
{{ range .entries }}
|
|
<entry>
|
|
<title>{{.Title}}</title>
|
|
<updated>{{.RFC3339}}</updated>
|
|
<author>
|
|
<name>{{.Author}}</name>
|
|
</author>
|
|
<content>{{.Content}}</content>
|
|
</entry>
|
|
{{ end }}
|
|
</feed>
|