jeremykidwell.info/layouts/rss.xml

21 lines
725 B
XML
Raw Normal View History

2017-06-26 19:57:02 +00:00
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>{{ .Title }} on jeremykidwell.info </title>
<link>{{ .Permalink }}</link>
<language>en-us</language>
<author>Jeremy Kidwell</author>
<rights>Copyright (c) Jeremy Kidwell.</rights>
<updated>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 MST" }}</updated>
{{ range first 10 .Data.Pages }}
<item>
<title>{{ .Title }}</title>
<link>{{ .Permalink }}</link>
<pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 MST" }}</pubDate>
<author>Jeremy Kidwell</author>
<guid>{{ .Permalink }}</guid>
<description>{{ .Content | html }}</description>
</item>
{{ end }}
</channel>
</rss>