feed.xml.eex 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:itunesu="http://www.itunesu.com/feed" version="2.0">
  3. <channel>
  4. <link>http://www.ape-alveare.it/</link>
  5. <language>en-us</language>
  6. <copyright>&#xA9;2022</copyright>
  7. <webMaster>your@email.com (Your Name)</webMaster>
  8. <managingEditor>your@email.com (Your Name)</managingEditor>
  9. <image>
  10. <url>http://www.ape-alveare.it/wp-content/themes/yootheme/cache/2018_logo_Ape_righe_trasparenza-d1aae6b9.png</url>
  11. <title>Ape-Milano-logo</title>
  12. <link>http://www.ape-alveare.it/</link>
  13. </image>
  14. <itunes:owner>
  15. <itunes:name>Ape Milano</itunes:name>
  16. <itunes:email>your@email.com</itunes:email>
  17. </itunes:owner>
  18. <itunes:category text="Education">
  19. <itunes:category text="Higher Education" />
  20. </itunes:category>
  21. <itunes:keywords>separate, by, comma, and, space</itunes:keywords>
  22. <itunes:explicit>no</itunes:explicit>
  23. <itunes:image href="http://www.ape-alveare.it/wp-content/themes/yootheme/cache/2018_logo_Ape_righe_trasparenza-d1aae6b9.png" />
  24. <atom:link href="http://www.ape-alveare.it/podcast.xml" rel="self" type="application/rss+xml" />
  25. <pubDate>Sun, 01 Jan 2012 00:00:00 EST</pubDate>
  26. <title>Verbose title of the podcast</title>
  27. <itunes:author>College, school, or department owning the podcast</itunes:author>
  28. <description>Verbose description of the podcast.</description>
  29. <itunes:summary>Duplicate of above verbose description.</itunes:summary>
  30. <itunes:subtitle>Short description of the podcast - 255 character max.</itunes:subtitle>
  31. <lastBuildDate>Thu, 02 Feb 2012 00:00:00 EST</lastBuildDate>
  32. <%= for item <- @items do %>
  33. <item>
  34. <title><%= item.title %></title>
  35. <link><%= item.link %></link>
  36. <pubDate><%= item.pubDate |> Calendar.DateTime.Format.rfc2822 %></pubDate>
  37. <description><%= item.description %></description>
  38. <enclosure url="<%= item.link %>" length="<%= item.length %>" type="audio/mpeg"/>
  39. <guid><%= item.link %></guid>
  40. <itunes:duration><%= item.length |> format_length %></itunes:duration>
  41. <itunes:summary><%= item.summary %></itunes:summary>
  42. <itunes:keywords><%= item.keywords %></itunes:keywords>
  43. <itunes:explicit><%= item.explicit %></itunes:explicit>
  44. </item>
  45. <%= end %>
  46. </channel>
  47. </rss>