mirror of
https://github.com/rclone/rclone.git
synced 2024-11-08 09:35:26 +01:00
20 lines
774 B
XML
20 lines
774 B
XML
<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>
|
|
<author>Enthusiastic Hugo User</author>
|
|
<rights>Copyright (c) 2014, Enthusiastic Hugo User; all rights reserved.</rights>
|
|
<updated>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 MST" }}</updated>
|
|
{{ range first 15 .Data.Pages }}
|
|
<item>
|
|
<title>{{ .Title }}</title>
|
|
<link>{{ .Permalink }}</link>
|
|
<pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 MST" }}</pubDate>
|
|
<author>Enthusiastic Hugo User</author>
|
|
<guid>{{ .Permalink }}</guid>
|
|
<description>{{ .Content | html }}</description>
|
|
</item>
|
|
{{ end }}
|
|
</channel>
|
|
</rss> |