This repository has been archived on 2025-06-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
suitedesk/modules/aggregator/aggregator-wrapper.tpl.php

18 lines
393 B
PHP

<?php
/**
* @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>