- drupal
Default theme implementation to wrap aggregator content.
Available variables:
- $content: All aggregator content.
- $page: Pager links rendered through theme_pager().
See also
template_preprocess_aggregator_wrapper()
4 theme calls to aggregator-wrapper.tpl.php
File
core/modules/aggregator/aggregator-wrapper.tpl.phpView source
- <?php
-
- /**
- * @file
- * 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_aggregator_wrapper()
- *
- * @ingroup themeable
- */
- ?>
- <div class="<?php print $classes; ?>">
- <?php print $content; ?>
- <?php print $pager; ?>
- </div>
-