summaryrefslogtreecommitdiff
path: root/sites/all/modules/views/theme/views-view-row-rss.tpl.php
blob: 01e0696dc04159fe5b6a0a036f3e03607bfb26f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

/**
 * @file
 * Default view template to display a item in an RSS feed.
 *
 * @ingroup views_templates
 */
?>
  <item>
    <title><?php print $title; ?></title>
    <link><?php print $link; ?></link>
    <description><?php print $description; ?></description>
    <?php print $item_elements; ?>
  </item>