22 lines
773 B
XML
22 lines
773 B
XML
{{ `<?xml version="1.0" encoding="utf-8"?>` | safeHTML }}
|
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
|
<id>{{ .URL }}</id>
|
|
<title>{{ .Title }}</title>
|
|
<updated>{{ site.Generated.Format "2006-01-02T15:04:05Z07:00" }}</updated>
|
|
<author>
|
|
<name>Valvin</name>
|
|
</author>
|
|
<link href="{{ .URL | safeURL }}" rel="alternate"/>
|
|
<link href="{{ .URL | safeURL }}/atom.xml" rel="self"/>
|
|
{{ range .Pages }}<entry>
|
|
<link href="{{ .URL | safeURL }}" rel="alternate"/>
|
|
<id>{{ .URL }}</id>
|
|
<title>{{ .Title }}</title>
|
|
<updated>{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}</updated>
|
|
{{ if .Params.tags }}{{ range strings.Split .Params.tags "," -}}
|
|
<category term="{{ strings.ReplaceAll . " " "" }}" />
|
|
{{ end }}{{ end -}}
|
|
</entry>
|
|
{{ end -}}
|
|
</feed>
|