mirror of
https://git.sr.ht/~adnano/kiln
synced 2024-11-24 11:06:16 +00:00
15 lines
515 B
XML
15 lines
515 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
|
<id>{{ site.URL }}{{ .Path }}</id>
|
|
<title>{{ .Title }}</title>
|
|
<updated>{{ .Updated.Format "2006-01-02T15:04:05Z07:00" }}</updated>
|
|
<link href="{{ site.URL }}{{ .Path }}" rel="alternate">
|
|
{{ range .Entries }}<entry>
|
|
<id>{{ site.URL }}{{ .Path }}</id>
|
|
<title>{{ .Title }}</title>
|
|
<updated>{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}</updated>
|
|
<link href="{{ site.URL }}{{ .Path }}" rel="alternate">
|
|
</entry>
|
|
{{ end -}}
|
|
</feed>
|