blob: d93b4627d4fecd9ca21831b51966caec7e653996 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
<?php
/**
* @file
* Display Suite example layout template.
*
* Available variables:
*
* Layout:
* - $classes: String of classes that can be used to style this layout.
* - $contextual_links: Renderable array of contextual links.
* - $layout_wrapper: wrapper surrounding the layout.
*
* Regions:
*
* - $left: Rendered content for the "Left" region.
* - $left_classes: String of classes that can be used to style the "Left" region.
* - $left_wrapper: wrapper surrounding the left region.
*
* - $right: Rendered content for the "Right" region.
* - $right_classes: String of classes that can be used to style the "Right" region.
* - $right_wrapper: wrapper surrounding the right region.
*/
?>
<<?php print $layout_wrapper; print $layout_attributes; ?> class="<?php print $classes;?> clearfix">
<!-- Needed to activate contextual links -->
<?php if (isset($title_suffix['contextual_links'])): ?>
<?php print render($title_suffix['contextual_links']); ?>
<?php endif; ?>
<!-- regions -->
<<?php print $left_wrapper ?> class="ds-left<?php print $left_classes; ?>">
<?php print $left; ?>
</<?php print $left_wrapper ?>>
<<?php print $right_wrapper ?> class="ds-right<?php print $right_classes; ?>">
<?php print $right; ?>
</<?php print $right_wrapper ?>>
<!-- These comments are required for the Drush command. You can remove them in your own copy -->
<!-- /regions -->
</<?php print $layout_wrapper ?>>
<!-- Needed to activate display suite support on forms -->
<?php if (!empty($drupal_render_children)): ?>
<?php print $drupal_render_children ?>
<?php endif; ?>
|