Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / themes / classy / templates / views / views-view-rss.html.twig
1 {#
2 /**
3  * @file
4  * Theme override 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_views_view_rss()
16  */
17 #}
18 <?xml version="1.0" encoding="utf-8"?>
19 <rss version="2.0" xml:base="{{ link }}"{{ namespaces }}>
20   <channel>
21     <title>{{ title }}</title>
22     <link>{{ link }}</link>
23     <description>{{ description }}</description>
24     <language>{{ langcode }}</language>
25     {{ channel_elements }}
26     {{ items }}
27   </channel>
28 </rss>