Parent Directory
|
Revision Log
|
Revision Graph
#284768 by drewish: Proper templates for RSS feeds rather than format_rss_item().
| 1 | <?php |
| 2 | // $Id: views-view-rss.tpl.php,v 1.3 2008/12/02 00:02:06 merlinofchaos Exp $ |
| 3 | /** |
| 4 | * @file views-view-row-rss.tpl.php |
| 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> |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |