shared-bulma-theme/layouts/rss.xml
Pierre de La Morinerie 6c8d45cea2
rss: change the feed title to "title - tagline"
Change the feed title from "yuzu on yuzu" to "yuzu - Nintendo Switch Emulator"
2021-07-21 16:31:45 +02:00

21 lines
820 B
XML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>{{ .Site.Title }} {{ .Site.Params.Tagline }}</title>
<link>{{ .Permalink }}</link>
<language>en-US</language>
<author>{{ .Title }} Team</author>
<rights>Copyright (c) 2017-{{ .Date.Format "2006" }}, {{ .Title }}; all rights reserved.</rights>
<updated>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 MST" }}</updated>
{{ range where .Site.RegularPages "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>