Projet

Général

Profil

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

root / drupal7 / sites / all / modules / ds / layouts / ds_3col / ds-3col.tpl.php @ 651307cd

1
<?php
2

    
3
/**
4
 * @file
5
 * Display Suite 3 column 25/50/25 template.
6
 */
7
?>
8
<<?php print $layout_wrapper; print $layout_attributes; ?> class="ds-3col <?php print $classes;?> clearfix">
9

    
10
  <?php if (isset($title_suffix['contextual_links'])): ?>
11
  <?php print render($title_suffix['contextual_links']); ?>
12
  <?php endif; ?>
13

    
14
  <<?php print $left_wrapper ?> class="group-left<?php print $left_classes;?>">
15
    <?php print $left; ?>
16
  </<?php print $left_wrapper ?>>
17

    
18
  <<?php print $middle_wrapper ?> class="group-middle<?php print $middle_classes;?>">
19
    <?php print $middle; ?>
20
  </<?php print $middle_wrapper ?>>
21

    
22
  <<?php print $right_wrapper ?> class="group-right<?php print $right_classes;?>">
23
    <?php print $right; ?>
24
  </<?php print $right_wrapper ?>>
25

    
26
</<?php print $layout_wrapper ?>>
27

    
28
<?php if (!empty($drupal_render_children)): ?>
29
  <?php print $drupal_render_children ?>
30
<?php endif; ?>