18 lines
607 B
XML
18 lines
607 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>
|
|
<link href="{{ .URL | safeURL }}" rel="alternate"/>
|
|
{{ range .Pages }}<entry>
|
|
<id>{{ .URL }}</id>
|
|
<title>{{ .Title }}</title>
|
|
<updated>{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}</updated>
|
|
<link href="{{ .URL | safeURL }}" rel="alternate"/>
|
|
<content type="html">{{ .Content | html }}</content>
|
|
<author>
|
|
<name>Morgan McMillian</name>
|
|
</author>
|
|
</entry>
|
|
{{ end -}}
|
|
</feed>
|