You are here

aggregator-wrapper.tpl.php in Drupal 7

Same filename and directory in other branches
  1. 6 modules/aggregator/aggregator-wrapper.tpl.php

Default theme implementation to wrap aggregator content.

Available variables:

  • $content: All aggregator content.
  • $page: Pager links rendered through theme_pager().

File

modules/aggregator/aggregator-wrapper.tpl.php
View source
<?php

/**
 * @file
 * Default theme implementation to wrap aggregator content.
 *
 * Available variables:
 * - $content: All aggregator content.
 * - $page: Pager links rendered through theme_pager().
 *
 * @see template_preprocess()
 * @see template_preprocess_aggregator_wrapper()
 *
 * @ingroup themeable
 */
?>
<div id="aggregator">
  <?php

print $content;
?>
  <?php

print $pager;
?>
</div>

Related topics