diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-09-13 08:02:38 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-09-13 08:02:38 +0000 |
commit | a5adbe4636816846cf35ed05c90eac35bbf8995e (patch) | |
tree | 219cb2a382cfb53d9bcac293947313474f06d73e /modules/aggregator/aggregator-wrapper.tpl.php | |
parent | eddb278a0a4dd0ccbfc0370349d2a9f9cd97fea6 (diff) | |
download | brdo-a5adbe4636816846cf35ed05c90eac35bbf8995e.tar.gz brdo-a5adbe4636816846cf35ed05c90eac35bbf8995e.tar.bz2 |
#173082 by dvessel: tplify aggregator module, make more stuff themeable
Diffstat (limited to 'modules/aggregator/aggregator-wrapper.tpl.php')
-rw-r--r-- | modules/aggregator/aggregator-wrapper.tpl.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/modules/aggregator/aggregator-wrapper.tpl.php b/modules/aggregator/aggregator-wrapper.tpl.php new file mode 100644 index 000000000..652dee2b5 --- /dev/null +++ b/modules/aggregator/aggregator-wrapper.tpl.php @@ -0,0 +1,19 @@ +<?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> |