~ubuntu-branches/ubuntu/jaunty/drupal6/jaunty-updates

« back to all changes in this revision

Viewing changes to modules/aggregator/aggregator-wrapper.tpl.php

  • Committer: Bazaar Package Importer
  • Author(s): Luigi Gangitano
  • Date: 2008-10-24 23:06:15 UTC
  • Revision ID: james.westby@ubuntu.com-20081024230615-a33t46nwna16bynv
Tags: upstream-6.6
ImportĀ upstreamĀ versionĀ 6.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
// $Id: aggregator-wrapper.tpl.php,v 1.1 2007/09/13 08:02:38 goba Exp $
 
3
 
 
4
/**
 
5
 * @file comment-wrapper.tpl.php
 
6
 * Default theme implementation to wrap aggregator content.
 
7
 *
 
8
 * Available variables:
 
9
 * - $content: All aggregator content.
 
10
 * - $page: Pager links rendered through theme_pager().
 
11
 *
 
12
 * @see template_preprocess()
 
13
 * @see template_preprocess_comment_wrapper()
 
14
 */
 
15
?>
 
16
<div id="aggregator">
 
17
  <?php print $content; ?>
 
18
  <?php print $pager; ?>
 
19
</div>