mirror of
https://git.sr.ht/~adnano/kiln
synced 2024-11-24 03:01:11 +00:00
18 lines
596 B
XML
18 lines
596 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<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 }}{{ .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="{{ . }}{{ $path }}" rel="alternate"/>
|
|
{{- end }}
|
|
</entry>
|
|
{{ end -}}
|
|
</feed>
|