1
|
<?php if (!empty($pre_object)) print render($pre_object) ?>
|
2
|
|
3
|
<div<?php print ($attributes) ?>>
|
4
|
<?php if (!empty($title_prefix)) print render($title_prefix); ?>
|
5
|
|
6
|
<?php if (!$page && !empty($title)): ?>
|
7
|
<h2 <?php if (!empty($title_attributes)) print $title_attributes ?>>
|
8
|
<?php if (!empty($new)): ?><span class="new"><?php print $new ?></span><?php endif; ?>
|
9
|
<a href="<?php print $node_url ?>"><?php print $title ?></a>
|
10
|
</h2>
|
11
|
<?php endif; ?>
|
12
|
|
13
|
<?php if (!empty($title_suffix)) print render($title_suffix); ?>
|
14
|
|
15
|
<?php if (!empty($submitted)): ?>
|
16
|
<div class="<?php print $hook ?>-submitted clearfix"><?php print $submitted ?></div>
|
17
|
<?php endif; ?>
|
18
|
|
19
|
<?php if (!empty($content)): ?>
|
20
|
<div<?php print $content_attributes ?>>
|
21
|
<?php print render($content) ?>
|
22
|
</div>
|
23
|
<?php endif; ?>
|
24
|
|
25
|
<?php if (!empty($links)): ?>
|
26
|
<div class="<?php print $hook ?>-links clearfix">
|
27
|
<?php print render($links) ?>
|
28
|
</div>
|
29
|
<?php endif; ?>
|
30
|
</div>
|
31
|
|
32
|
<?php if (!empty($post_object)) print render($post_object) ?>
|