views-view-rss.html.twig

Default template for feed displays that use the RSS style.

Available variables:

  • link: The link to the feed (the view path).
  • namespaces: The XML namespaces (added automatically).
  • title: The title of the feed (as set in the view).
  • description: The feed description (from feed settings).
  • langcode: The language encoding.
  • channel_elements: The formatted channel elements.
  • items: The feed items themselves.

See also

template_preprocess()

template_preprocess_views_view_rss()

File

drupal/core/modules/views/templates/views-view-rss.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default template for feed displays that use the RSS style.
  5. *
  6. * Available variables:
  7. * - link: The link to the feed (the view path).
  8. * - namespaces: The XML namespaces (added automatically).
  9. * - title: The title of the feed (as set in the view).
  10. * - description: The feed description (from feed settings).
  11. * - langcode: The language encoding.
  12. * - channel_elements: The formatted channel elements.
  13. * - items: The feed items themselves.
  14. *
  15. * @see template_preprocess()
  16. * @see template_preprocess_views_view_rss()
  17. *
  18. * @ingroup themeable
  19. */
  20. #}
  21. <?xml version="1.0" encoding="utf-8" ?>
  22. <rss version="2.0" xml:base="{{ link }}"{{ namespaces }}>
  23. <channel>
  24. <title>{{ title }}</title>
  25. <link>{{ link }}</link>
  26. <description>{{ description }}</description>
  27. <language>{{ langcode }}</language>
  28. {{ channel_elements }}
  29. {{ items }}
  30. </channel>
  31. </rss>

Related topics