Projet

Général

Profil

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

root / drupal7 / sites / all / modules / ds / layouts / ds_1col_wrapper / ds-1col-wrapper.tpl.php @ a6e869e4

1
<?php
2

    
3
/**
4
 * @file
5
 * Display Suite 1 column template with layout wrapper.
6
 */
7
?>
8
<<?php print $layout_wrapper; print $layout_attributes; ?> class="ds-1col <?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 $ds_content_wrapper ?> class="<?php print trim($ds_content_classes); ?>">
15
    <?php print $ds_content; ?>
16
  </<?php print $ds_content_wrapper ?>>
17

    
18
</<?php print $layout_wrapper ?>>
19

    
20
<?php if (!empty($drupal_render_children)): ?>
21
  <?php print $drupal_render_children ?>
22
<?php endif; ?>