blob: 38518d621e079efd87c787c951a87e33a613b907 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?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 endif; ?>
<<?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 ?>
<?php endif; ?>
|