Advertisement
Guest User

Untitled

a guest
Aug 25th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  3. <channel>
  4. <atom:link href="{{ app.request.uri }}" rel="self" type="application/rss+xml" />
  5. <title>ActuSerie feeds</title>
  6. <description>Official RSS feed for ActuSerie</description>
  7. <link>http://{{ videos|first.episode.serie.domain ~ path('homepage') }}</link>
  8. <language>fr-fr</language>
  9. <lastBuildDate>{{ videos|first.createdAt|date('r') }}</lastBuildDate>
  10. {% for video in videos %}
  11. <item>
  12. <title>Voir {{ video.episode.serie.name }} - Saison {{ video.episode.saison }} épisode {{ video.episode.episode }} ({{ video.langue }}) en streaming HD</title>
  13. <description>
  14. {% if video.episode.description|length %}
  15. {{ video.episode.description|raw|striptags }}
  16. {% else %}
  17. Regardez {{ video.episode.serie.name }} - Saison {{ video.episode.saison }} épisode {{ video.episode.episode }} en streaming {{ video.langue }} gratuitement !
  18. {% endif %}
  19. </description>
  20. <link>http://{{ video.episode.serie.domain ~ path('episode_view', {slug: video.episode.serie.slug, saison: video.episode.saison, episode: video.episode.episode}) }}</link>
  21. <pubDate>{{ video.createdAt|date('r') }}</pubDate>
  22. <guid isPermaLink="false">{{ video.id ~ '|' ~ video.createdAt|date('r') }}</guid>
  23. </item>
  24. {% endfor %}
  25. </channel>
  26. </rss>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement