root / htmltest / sites / all / modules / views / theme / views-view-row-rss.tpl.php @ a5572547
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>
|