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