root / drupal7 / modules / aggregator / aggregator-wrapper.tpl.php @ 7dbec6b0
1 |
<?php
|
---|---|
2 |
|
3 |
/**
|
4 |
* @file
|
5 |
* Default theme implementation to wrap aggregator content.
|
6 |
*
|
7 |
* Available variables:
|
8 |
* - $content: All aggregator content.
|
9 |
* - $page: Pager links rendered through theme_pager().
|
10 |
*
|
11 |
* @see template_preprocess()
|
12 |
* @see template_preprocess_aggregator_wrapper()
|
13 |
*
|
14 |
* @ingroup themeable
|
15 |
*/
|
16 |
?>
|
17 |
<div id="aggregator"> |
18 |
<?php print $content; ?> |
19 |
<?php print $pager; ?> |
20 |
</div>
|