home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / CMS / drupal-6.0.exe / drupal-6.0 / modules / aggregator / aggregator-summary-items.tpl.php < prev    next >
Encoding:
PHP Script  |  2007-09-13  |  738 b   |  25 lines

  1. <?php
  2. // $Id: aggregator-summary-items.tpl.php,v 1.1 2007/09/13 08:02:38 goba Exp $
  3.  
  4. /**
  5.  * @file aggregator-summary-items.tpl.php
  6.  * Default theme implementation to present feeds as list items.
  7.  *
  8.  * Each iteration generates a single feed source or category.
  9.  *
  10.  * Available variables:
  11.  * - $title: Title of the feed or category.
  12.  * - $summary_list: Unordered list of linked feed items generated through
  13.  *   theme_item_list().
  14.  * - $source_url: URL to the local source or category.
  15.  *
  16.  * @see template_preprocess()
  17.  * @see template_preprocess_aggregator_summary-items()
  18.  */
  19. ?>
  20. <h2><?php print $title; ?></h2>
  21. <?php print $summary_list; ?>
  22. <div class="links">
  23.   <a href="<?php print $source_url; ?>"><?php print t('More'); ?></a>
  24. </div>
  25.