forked from GolangShow/golangshow.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrss.xml
37 lines (35 loc) · 2.41 KB
/
rss.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
{{ "<!-- This fees is _not_ for iTunes, see episode.rss.xml for that. -->" | safeHTML }}
<channel>
<title>Подкаст GolangShow</title>
<link>{{ .Site.BaseURL }}</link>
<language>{{ .Site.LanguageCode }}</language>
<copyright>℗ & © 2015-2016, Команда GolangShow</copyright>
<itunes:subtitle>Русскоязычный подкаст о языке Go</itunes:subtitle>
<itunes:author>Подкаст GolangShow</itunes:author>
<itunes:summary>В русскоязычном подкасте о языке программирования Go мы обсуждаем свежие новости, приглашаем интересных гостей, рассказываем о проходящих конференциях по всему миру</itunes:summary>
<description>В русскоязычном подкасте о языке программирования Go мы обсуждаем свежие новости, приглашаем интересных гостей, рассказываем о проходящих конференциях по всему миру. Ключевые слова: go, golang, golangshow.</description>
<generator>Hugo {{ .Hugo.Version }}</generator>
<itunes:image href="{{ .Site.BaseURL }}images/cover_big.png" />
<itunes:category text="Technology">
<itunes:category text="Software How-To" />
</itunes:category>
<itunes:explicit>no</itunes:explicit>
{{ range .Data.Pages }}
<item>
<title>{{ .Title | html }}</title>
<itunes:subtitle>{{ .Title | html }}</itunes:subtitle>
<itunes:summary>{{ .Content | html }}</itunes:summary>
<itunes:author>Подкаст GolangShow</itunes:author>
<itunes:image href="{{ .Site.BaseURL }}images/cover_big.png" />
<enclosure url="https://{{ .Params.link }}" length="{{ .Params.size }}" type="audio/mpeg" />
<itunes:duration>{{ .Params.length }}</itunes:duration>
<link>{{ .Permalink }}</link>
<pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</pubDate>
{{ with .Site.Author.email }}<author>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</author>{{end}}
<guid>{{ .Permalink }}</guid>
<description>{{ .Content | html }}</description>
</item>
{{ end }}
</channel>
</rss>