Projet

Général

Profil

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

root / drupal7 / modules / aggregator / aggregator-summary-items.tpl.php @ db2d93dd

1
<?php
2

    
3
/**
4
 * @file
5
 * Default theme implementation to present feeds as list items.
6
 *
7
 * Each iteration generates a single feed source or category.
8
 *
9
 * Available variables:
10
 * - $title: Title of the feed or category.
11
 * - $summary_list: Unordered list of linked feed items generated through
12
 *   theme_item_list().
13
 * - $source_url: URL to the local source or category.
14
 *
15
 * @see template_preprocess()
16
 * @see template_preprocess_aggregator_summary_items()
17
 *
18
 * @ingroup themeable
19
 */
20
?>
21
<h3><?php print $title; ?></h3>
22
<?php print $summary_list; ?>
23
<div class="links">
24
  <a href="<?php print $source_url; ?>"><?php print t('More'); ?></a>
25
</div>