Projet

Général

Profil

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

root / drupal7 / sites / all / modules / ds / tests / dstest_2col / dstest-2col.tpl.php @ a6e869e4

1
<?php
2

    
3
/**
4
 * @file
5
 * Display Suite 2 column template.
6
 */
7
?>
8
<div class="<?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 if ($left): ?>
15
    <div class="group-left<?php print $left_classes; ?>">
16
      <?php print $left; ?>
17
    </div>
18
  <?php endif; ?>
19

    
20
  <?php if ($right): ?>
21
    <div class="group-right<?php print $right_classes; ?>">
22
      <?php print $right; ?>
23
    </div>
24
  <?php endif; ?>
25

    
26
</div>