Projet

Général

Profil

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

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

1
<?php
2

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

    
18
  <<?php print $left_wrapper ?> class="group-left<?php print $left_classes; ?>">
19
    <?php print $left; ?>
20
  </<?php print $left_wrapper ?>>
21

    
22
  <<?php print $middle_wrapper ?> class="group-middle<?php print $middle_classes; ?>">
23
    <?php print $middle; ?>
24
  </<?php print $middle_wrapper ?>>
25

    
26
  <<?php print $right_wrapper ?> class="group-right<?php print $right_classes; ?>">
27
    <?php print $right; ?>
28
  </<?php print $right_wrapper ?>>
29

    
30
  <<?php print $footer_wrapper ?> class="group-footer<?php print $footer_classes; ?>">
31
    <?php print $footer; ?>
32
  </<?php print $footer_wrapper ?>>
33

    
34
</<?php print $layout_wrapper ?>>
35

    
36
<?php if (!empty($drupal_render_children)): ?>
37
  <?php print $drupal_render_children ?>
38
<?php endif; ?>