source: sipes/modules_contrib/panels/plugins/layouts/onecol/panels-onecol.tpl.php @ 4f375e3

stableversion-3.0
Last change on this file since 4f375e3 was 4f375e3, checked in by José Gregorio Puentes <jpuentes@…>, 8 años ago

se agrego el modulo panels

  • Propiedad mode establecida a 100644
File size: 628 octetos
Línea 
1<?php
2/**
3 * @file
4 * Template for a 3 column panel layout.
5 *
6 * This template provides a very simple "one column" panel display layout.
7 *
8 * Variables:
9 * - $id: An optional CSS id to use for the layout.
10 * - $content: An array of content, each item in the array is keyed to one
11 *   panel of the layout. This layout supports the following sections:
12 *   $content['middle']: The only panel in the layout.
13 */
14?>
15<div class="panel-display panel-1col clear-block" <?php if (!empty($css_id)) { print "id=\"$css_id\""; } ?>>
16  <div class="panel-panel panel-col">
17    <div><?php print $content['middle']; ?></div>
18  </div>
19</div>
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.