Projet

Général

Profil

Paste
Télécharger (312 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / views / theme / views-view-row-rss.tpl.php @ 7547bb19

1
<?php
2

    
3
/**
4
 * @file
5
 * Default view template to display a item in an RSS feed.
6
 *
7
 * @ingroup views_templates
8
 */
9
?>
10
  <item>
11
    <title><?php print $title; ?></title>
12
    <link><?php print $link; ?></link>
13
    <description><?php print $description; ?></description>
14
    <?php print $item_elements; ?>
15
  </item>