20 lines
401 B
PHP
20 lines
401 B
PHP
|
<?php
|
||
|
// $Id$
|
||
|
|
||
|
/**
|
||
|
* @file comment-wrapper.tpl.php
|
||
|
* 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_comment_wrapper()
|
||
|
*/
|
||
|
?>
|
||
|
<div id="aggregator">
|
||
|
<?php print $content; ?>
|
||
|
<?php print $pager; ?>
|
||
|
</div>
|