Skip to content

Commit b843b65

Browse files
authored
Merge pull request #44455 from craigbox/rss-fixes
Modify RSS XML
2 parents f89116d + 9c2ded0 commit b843b65

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

layouts/index.rss.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
22
<channel>
3-
<title>{{ site.Title }} – {{ .Title }}</title>
3+
<title>{{ site.Title }} Blog</title>
44
<link>{{ .Permalink }}</link>
5-
<description>The Kubernetes project blog</description>
5+
<description>The Kubernetes blog is used by the project to communicate new features, community reports, and any news that might be relevant to the Kubernetes community.</description>
66
<generator>Hugo -- gohugo.io</generator>{{ with site.LanguageCode }}
77
<language>{{.}}</language>{{end}}{{ with site.Author.email }}
88
<managingEditor>{{.}}{{ with site.Author.name }} ({{.}}){{end}}</managingEditor>{{end}}{{ with site.Author.email }}
@@ -11,15 +11,15 @@
1111
<lastBuildDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</lastBuildDate>{{ end }}
1212
<image>
1313
<url>https://raw.githubusercontent.com/kubernetes/kubernetes/master/logo/logo.png</url>
14-
<title>Kubernetes.io</title>
14+
<title>The Kubernetes project logo</title>
1515
<link>{{ .Permalink }}</link>
1616
</image>
1717
{{ with .OutputFormats.Get "RSS" }}
18-
{{ printf "<atom:link href=%q rel=\"self\" type=%q />" .Permalink .MediaType | safeHTML }}
18+
{{ printf "<atom:link href=%q rel=\"self\" type=%q />" .Permalink .MediaType | safeHTML }}
1919
{{ end }}
2020
{{ range first 50 (where site.RegularPages "Type" "in" (slice "blog")) }}
2121
<item>
22-
<title>{{ .Section | title }}: {{ .Title }}</title>
22+
<title>{{ .Title }}</title>
2323
<link>{{ .Permalink }}</link>
2424
<pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</pubDate>
2525
{{ with site.Author.email }}<author>{{.}}{{ with site.Author.name }} ({{.}}){{end}}</author>{{end}}

0 commit comments

Comments
 (0)