Mercurial > hg > rr-repo
annotate modules/aggregator/aggregator-wrapper.tpl.php @ 2:b74b41bb73f0
-- Google analytics module
author | danieleb <danielebarchiesi@me.com> |
---|---|
date | Thu, 22 Aug 2013 17:22:54 +0100 |
parents | ff03f76ab3fe |
children |
rev | line source |
---|---|
danielebarchiesi@0 | 1 <?php |
danielebarchiesi@0 | 2 |
danielebarchiesi@0 | 3 /** |
danielebarchiesi@0 | 4 * @file |
danielebarchiesi@0 | 5 * Default theme implementation to wrap aggregator content. |
danielebarchiesi@0 | 6 * |
danielebarchiesi@0 | 7 * Available variables: |
danielebarchiesi@0 | 8 * - $content: All aggregator content. |
danielebarchiesi@0 | 9 * - $page: Pager links rendered through theme_pager(). |
danielebarchiesi@0 | 10 * |
danielebarchiesi@0 | 11 * @see template_preprocess() |
danielebarchiesi@0 | 12 * @see template_preprocess_aggregator_wrapper() |
danielebarchiesi@0 | 13 * |
danielebarchiesi@0 | 14 * @ingroup themeable |
danielebarchiesi@0 | 15 */ |
danielebarchiesi@0 | 16 ?> |
danielebarchiesi@0 | 17 <div id="aggregator"> |
danielebarchiesi@0 | 18 <?php print $content; ?> |
danielebarchiesi@0 | 19 <?php print $pager; ?> |
danielebarchiesi@0 | 20 </div> |