Projet

Général

Profil

Paste
Télécharger (1018 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / panels / plugins / layouts / threecol_33_34_33 / panels-threecol-33-34-33.tpl.php @ 64156087

1
<?php
2
/**
3
 * @file
4
 * Template for a 3 column panel layout.
5
 *
6
 * This template provides a three column panel display layout, with
7
 * each column roughly equal in width.
8
 *
9
 * Variables:
10
 * - $id: An optional CSS id to use for the layout.
11
 * - $content: An array of content, each item in the array is keyed to one
12
 *   panel of the layout. This layout supports the following sections:
13
 *   - $content['left']: Content in the left column.
14
 *   - $content['middle']: Content in the middle column.
15
 *   - $content['right']: Content in the right column.
16
 */
17
?>
18

    
19
<div class="panel-display panel-3col-33 clearfix" <?php if (!empty($css_id)) {print "id=\"$css_id\"";} ?>>
20
  <div class="panel-panel panel-col-first">
21
    <div class="inside"><?php print $content['left']; ?></div>
22
  </div>
23

    
24
  <div class="panel-panel panel-col">
25
    <div class="inside"><?php print $content['middle']; ?></div>
26
  </div>
27

    
28
  <div class="panel-panel panel-col-last">
29
    <div class="inside"><?php print $content['right']; ?></div>
30
  </div>
31
</div>