summaryrefslogtreecommitdiff
path: root/sites/all/modules/ds/layouts/ds_4col/ds-4col.tpl.php
diff options
context:
space:
mode:
Diffstat (limited to 'sites/all/modules/ds/layouts/ds_4col/ds-4col.tpl.php')
-rw-r--r--sites/all/modules/ds/layouts/ds_4col/ds-4col.tpl.php34
1 files changed, 34 insertions, 0 deletions
diff --git a/sites/all/modules/ds/layouts/ds_4col/ds-4col.tpl.php b/sites/all/modules/ds/layouts/ds_4col/ds-4col.tpl.php
new file mode 100644
index 000000000..afcad5db9
--- /dev/null
+++ b/sites/all/modules/ds/layouts/ds_4col/ds-4col.tpl.php
@@ -0,0 +1,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; ?>