2018-10-09 04:21:34 +02:00
|
|
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
|
|
<channel>
|
|
|
|
<title>{{ .Title }} on {{ .Site.Title }} </title>
|
|
|
|
<link>{{ .Permalink }}</link>
|
|
|
|
<language>en-US</language>
|
2021-06-10 22:15:37 +02:00
|
|
|
<author>{{ .Title }} Team</author>
|
|
|
|
<rights>Copyright (c) 2017-{{ .Date.Format "2006" }}, {{ .Title }}; all rights reserved.</rights>
|
2018-10-09 04:21:34 +02:00
|
|
|
<updated>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 MST" }}</updated>
|
2021-06-10 21:40:06 +02:00
|
|
|
{{ range where .Site.RegularPages "Section" "entry" }}
|
2018-10-09 04:21:34 +02:00
|
|
|
<item>
|
|
|
|
<title>{{ .Title }}</title>
|
|
|
|
<link>{{ .Permalink }}</link>
|
|
|
|
<pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 MST" }}</pubDate>
|
|
|
|
<author>{{ .Params.Author }}</author>
|
|
|
|
<guid>{{ .Permalink }}</guid>
|
|
|
|
<description>{{ .Summary | html }}</description>
|
|
|
|
</item>
|
|
|
|
{{ end }}
|
|
|
|
</channel>
|
|
|
|
</rss>
|