|
1 | 1 | <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
2 | 2 | <channel>
|
3 |
| - <title>{{ site.Title }} – {{ .Title }}</title> |
| 3 | + <title>{{ site.Title }} Blog</title> |
4 | 4 | <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> |
6 | 6 | <generator>Hugo -- gohugo.io</generator>{{ with site.LanguageCode }}
|
7 | 7 | <language>{{.}}</language>{{end}}{{ with site.Author.email }}
|
8 | 8 | <managingEditor>{{.}}{{ with site.Author.name }} ({{.}}){{end}}</managingEditor>{{end}}{{ with site.Author.email }}
|
|
11 | 11 | <lastBuildDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</lastBuildDate>{{ end }}
|
12 | 12 | <image>
|
13 | 13 | <url>https://raw.githubusercontent.com/kubernetes/kubernetes/master/logo/logo.png</url>
|
14 |
| - <title>Kubernetes.io</title> |
| 14 | + <title>The Kubernetes project logo</title> |
15 | 15 | <link>{{ .Permalink }}</link>
|
16 | 16 | </image>
|
17 | 17 | {{ 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 }} |
19 | 19 | {{ end }}
|
20 | 20 | {{ range first 50 (where site.RegularPages "Type" "in" (slice "blog")) }}
|
21 | 21 | <item>
|
22 |
| - <title>{{ .Section | title }}: {{ .Title }}</title> |
| 22 | + <title>{{ .Title }}</title> |
23 | 23 | <link>{{ .Permalink }}</link>
|
24 | 24 | <pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</pubDate>
|
25 | 25 | {{ with site.Author.email }}<author>{{.}}{{ with site.Author.name }} ({{.}}){{end}}</author>{{end}}
|
|
0 commit comments