blob: 0c2f774f55e596c33b0802481e654825ebdf541f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?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()
*/
?>
<div class="aggregator">
<?php print $content; ?>
<?php print $pager; ?>
</div>
|