Projet

Général

Profil

Paste
Télécharger (1,02 ko) Statistiques
| Branche: | Révision:

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

1
<?php
2

    
3
/**
4
 * @file
5
 * Display Suite 4 column template.
6
 */
7
?>
8
<<?php print $layout_wrapper; print $layout_attributes; ?> class="ds-4col <?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 $first_wrapper ?> class="group-first<?php print $first_classes; ?>">
15
    <?php print $first; ?>
16
  </<?php print $first_wrapper ?>>
17

    
18
  <<?php print $second_wrapper ?> class="group-second<?php print $second_classes; ?>">
19
    <?php print $second; ?>
20
  </<?php print $second_wrapper ?>>
21

    
22
  <<?php print $third_wrapper ?> class="group-third<?php print $third_classes; ?>">
23
    <?php print $third; ?>
24
  </<?php print $third_wrapper ?>>
25

    
26
  <<?php print $fourth_wrapper ?> class="group-fourth<?php print $fourth_classes; ?>">
27
    <?php print $fourth; ?>
28
  </<?php print $fourth_wrapper ?>>
29

    
30
</<?php print $layout_wrapper ?>>
31

    
32
<?php if (!empty($drupal_render_children)): ?>
33
  <?php print $drupal_render_children ?>
34
<?php endif; ?>