Projet

Général

Profil

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

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

1
<?php
2

    
3
/**
4
 * @file
5
 * Display Suite 2 column template.
6
 */
7
?>
8
<<?php print $layout_wrapper; print $layout_attributes; ?> class="ds-2col <?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 $right_wrapper ?> class="group-right<?php print $right_classes; ?>">
19
    <?php print $right; ?>
20
  </<?php print $right_wrapper ?>>
21

    
22
</<?php print $layout_wrapper ?>>
23

    
24
<?php if (!empty($drupal_render_children)): ?>
25
  <?php print $drupal_render_children ?>
26
<?php endif; ?>