Skip to content

Commit d68c27c

Browse files
committed
Add keywords, summary, and media params to iTunes RSS
1 parent 4d53669 commit d68c27c

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

app/views/podcasts/feed.rss.builder

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,19 @@ xml.rss :version => "2.0",
1111
xml.copyright @copyright
1212
xml.language "ja"
1313

14+
xml.atom :link, :href => "http://dojocast.superfeedr.com/",
15+
:rel => "hub"
16+
xml.atom :link, :href => "https://coderdojo.jp/podcasts.rss",
17+
:rel => "self",
18+
:type => "application/rss+xml"
19+
xml.media :thumbnail, :url => "https://coderdojo.jp/img/logo.png"
20+
xml.media :keywords, "programming,education,opensource,community,coderdojo,software,development"
21+
xml.media :category, "Technology", :scheme => "http://www.itunes.com/dtds/podcast-1.0.dtd"
22+
1423
xml.itunes :author, @author
24+
xml.itunes :keywords, "programming,education,opensource,community,coderdojo,software,development"
25+
xml.itunes :subtitle, @description
26+
xml.itunes :summary, "CoderDojo コミュニティに関わる方々をハイライトする教育系ポッドキャストです。"
1527
xml.itunes :image, :href => @art_work_url
1628
xml.itunes :explicit, "clean"
1729
xml.itunes :owner do

0 commit comments

Comments
 (0)