1
0
Fork 0
mirror of https://git.sr.ht/~adnano/kiln synced 2024-05-03 22:26:28 +02:00
kiln/templates/_default/atom.xml
2021-05-10 15:03:02 -04:00

18 lines
635 B
XML

{{ `<?xml version="1.0" encoding="utf-8"?>` | safeHTML }}
<feed xmlns="http://www.w3.org/2005/Atom">
<id>{{ index site.URLs 0 }}{{ .Path }}</id>
<title>{{ .Title }}</title>
<updated>{{ .Updated.Format "2006-01-02T15:04:05Z07:00" }}</updated>
<link href="{{ index site.URLs 0 | safeURL }}{{ .Path }}" rel="alternate"/>
{{ range .Entries }}<entry>
<id>{{ index site.URLs 0 }}{{ .Path }}</id>
<title>{{ .Title }}</title>
<updated>{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}</updated>
{{- $path := .Path }}
{{- range site.URLs }}
<link href="{{ . | safeURL }}{{ $path }}" rel="alternate"/>
{{- end }}
</entry>
{{ end -}}
</feed>