blob: afcad5db9531dad330baf8aa1bc154cd44145df5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<?php
/**
* @file
* Display Suite 4 column template.
*/
?>
<<?php print $layout_wrapper; print $layout_attributes; ?> class="ds-4col <?php print $classes;?> clearfix">
<?php if (isset($title_suffix['contextual_links'])): ?>
<?php print render($title_suffix['contextual_links']); ?>
<?php endif; ?>
<<?php print $first_wrapper ?> class="group-first<?php print $first_classes; ?>">
<?php print $first; ?>
</<?php print $first_wrapper ?>>
<<?php print $second_wrapper ?> class="group-second<?php print $second_classes; ?>">
<?php print $second; ?>
</<?php print $second_wrapper ?>>
<<?php print $third_wrapper ?> class="group-third<?php print $third_classes; ?>">
<?php print $third; ?>
</<?php print $third_wrapper ?>>
<<?php print $fourth_wrapper ?> class="group-fourth<?php print $fourth_classes; ?>">
<?php print $fourth; ?>
</<?php print $fourth_wrapper ?>>
</<?php print $layout_wrapper ?>>
<?php if (!empty($drupal_render_children)): ?>
<?php print $drupal_render_children ?>
<?php endif; ?>
|