You are here

ds-1col-wrapper.tpl.php in Display Suite 7.2

Display Suite 1 column template with layout wrapper.

File

layouts/ds_1col_wrapper/ds-1col-wrapper.tpl.php
View source
<?php

/**
 * @file
 * Display Suite 1 column template with layout wrapper.
 */
?>
<<?php

print $layout_wrapper;
print $layout_attributes;
?> class="ds-1col <?php

print $classes;
?> clearfix">

  <?php

if (isset($title_suffix['contextual_links'])) {
  ?>
  <?php

  print render($title_suffix['contextual_links']);
  ?>
  <?php

}
?>

  <<?php

print $ds_content_wrapper;
?> class="<?php

print trim($ds_content_classes);
?>">
    <?php

print $ds_content;
?>
  </<?php

print $ds_content_wrapper;
?>>

</<?php

print $layout_wrapper;
?>>

<?php

if (!empty($drupal_render_children)) {
  ?>
  <?php

  print $drupal_render_children;
}