1
|
<?php if (!empty($pre_object)) print render($pre_object) ?>
|
2
|
|
3
|
<div class='<?php print $classes ?> clearfix' <?php print ($attributes) ?>>
|
4
|
<?php if ($layout && (!empty($submitted) || !empty($links))): ?>
|
5
|
<div class='column-side'><div class='column-wrapper'>
|
6
|
<?php endif; ?>
|
7
|
|
8
|
<?php if (!empty($submitted)): ?>
|
9
|
<div class='<?php print $hook ?>-submitted clearfix'><?php print $submitted ?></div>
|
10
|
<?php endif; ?>
|
11
|
|
12
|
<?php if (!empty($links)): ?>
|
13
|
<div class='<?php print $hook ?>-links clearfix'>
|
14
|
<?php print render($links) ?>
|
15
|
</div>
|
16
|
<?php endif; ?>
|
17
|
|
18
|
<?php if ($layout && (!empty($submitted) || !empty($links))): ?>
|
19
|
</div></div>
|
20
|
<?php endif; ?>
|
21
|
|
22
|
<?php if ($layout): ?>
|
23
|
<div class='column-main'><div class='column-wrapper'>
|
24
|
<?php endif; ?>
|
25
|
|
26
|
<?php if (!empty($title_prefix)) print render($title_prefix); ?>
|
27
|
|
28
|
<?php if (!empty($title)): ?>
|
29
|
<h2 <?php if (!empty($title_attributes)) print $title_attributes ?>>
|
30
|
<?php if (!empty($new)): ?><span class='new'><?php print $new ?></span><?php endif; ?>
|
31
|
<?php print $title ?>
|
32
|
</h2>
|
33
|
<?php endif; ?>
|
34
|
|
35
|
<?php if (!empty($title_suffix)) print render($title_suffix); ?>
|
36
|
|
37
|
<?php if (!empty($content)): ?>
|
38
|
<div class='<?php print $hook ?>-content clearfix <?php if (!empty($is_prose)) print 'prose' ?>'>
|
39
|
<?php print render($content) ?>
|
40
|
</div>
|
41
|
<?php endif; ?>
|
42
|
|
43
|
<?php if ($layout): ?>
|
44
|
</div></div>
|
45
|
<?php endif; ?>
|
46
|
</div>
|
47
|
|
48
|
<?php if (!empty($post_object)) print render($post_object) ?>
|