mirror of
https://github.com/yuzu-emu/shared-bulma-theme.git
synced 2024-11-22 16:15:38 +01:00
22 lines
755 B
XML
22 lines
755 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>Citra</author>
|
||
|
<rights>Copyright (c) 2017, Citra; all rights reserved.</rights>
|
||
|
<updated>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 MST" }}</updated>
|
||
|
{{ range where .Data.Pages "Section" "entry" }}
|
||
|
<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>
|
||
|
|