diff options
Diffstat (limited to 'modules/aggregator/aggregator-summary-items.tpl.php')
-rw-r--r-- | modules/aggregator/aggregator-summary-items.tpl.php | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/modules/aggregator/aggregator-summary-items.tpl.php b/modules/aggregator/aggregator-summary-items.tpl.php deleted file mode 100644 index 0e2133a1e3b..00000000000 --- a/modules/aggregator/aggregator-summary-items.tpl.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -/** - * @file - * Default theme implementation to present feeds as list items. - * - * Each iteration generates a single feed source or category. - * - * Available variables: - * - $title: Title of the feed or category. - * - $summary_list: Unordered list of linked feed items generated through - * theme_item_list(). - * - $source_url: URL to the local source or category. - * - * @see template_preprocess() - * @see template_preprocess_aggregator_summary_items() - */ -?> -<h3><?php print $title; ?></h3> -<?php print $summary_list; ?> -<div class="links"> - <a href="<?php print $source_url; ?>"><?php print t('More'); ?></a> -</div> |