1
|
<?php
|
2
|
phptemplate_comment_wrapper(NULL, $node->type);
|
3
|
?>
|
4
|
|
5
|
<div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?>">
|
6
|
|
7
|
<?php print $picture ?>
|
8
|
|
9
|
<?php if ($page == 0): ?>
|
10
|
<h2><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
|
11
|
<?php endif; ?>
|
12
|
|
13
|
<?php if ($submitted): ?>
|
14
|
<span class="submitted"><?php print t('!date — !username', array('!username' => theme('username', $node), '!date' => format_date($node->created))); ?></span>
|
15
|
<?php endif; ?>
|
16
|
|
17
|
<div class="content">
|
18
|
<?php
|
19
|
print $content ?>
|
20
|
</div>
|
21
|
|
22
|
<div class="clear-block clear">
|
23
|
<div class="meta">
|
24
|
<?php if ($taxonomy): ?>
|
25
|
<div class="terms"><?php print $terms ?></div>
|
26
|
<?php endif;?>
|
27
|
</div>
|
28
|
|
29
|
<?php if ($links): ?>
|
30
|
<div class="links"><?php print $links; ?></div>
|
31
|
<?php endif; ?>
|
32
|
</div>
|
33
|
|
34
|
</div>
|