comparison modules/aggregator/aggregator-wrapper.tpl.php @ 0:ff03f76ab3fe

initial version
author danieleb <danielebarchiesi@me.com>
date Wed, 21 Aug 2013 18:51:11 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:ff03f76ab3fe
1 <?php
2
3 /**
4 * @file
5 * Default theme implementation to wrap aggregator content.
6 *
7 * Available variables:
8 * - $content: All aggregator content.
9 * - $page: Pager links rendered through theme_pager().
10 *
11 * @see template_preprocess()
12 * @see template_preprocess_aggregator_wrapper()
13 *
14 * @ingroup themeable
15 */
16 ?>
17 <div id="aggregator">
18 <?php print $content; ?>
19 <?php print $pager; ?>
20 </div>