Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / themes / classy / templates / views / views-view-opml.html.twig
1 {#
2 /**
3  * @file
4  * Theme override for feed displays that use the OPML style.
5  *
6  * Available variables:
7  * - title: The title of the feed (as set in the view).
8  * - updated: The modified date of the feed.
9  * - items: The feed items themselves.
10  *
11  * @see template_preprocess_views_view_opml()
12  */
13 #}
14 <?xml version="1.0" encoding="utf-8"?>
15 <opml version="2.0">
16   <head>
17     <title>{{ title }}</title>
18     <dateModified>{{ updated }}</dateModified>
19   </head>
20   <body>
21     {{ items }}
22   </body>
23 </opml>