| 1 |
<div class="node<?php if ($sticky) { print " sticky"; } ?><?php if (!$status) { print " node-unpublished"; } ?>">
|
| 2 |
<?php if ($picture) {
|
| 3 |
print $picture;
|
| 4 |
}?>
|
| 5 |
<?php if ($page == 0) { ?><h2 class="nodeTitle"><a href="<?php print $node_url?>"><?php print $title?></a></h2><?php }; ?>
|
| 6 |
<?php if ($submitted): ?>
|
| 7 |
<div class="submitted"><?php print t('By ') . theme('username', $node) . t(' - Posted on ') . format_date($node->created, 'custom', "F jS, Y"); ?></div>
|
| 8 |
<?php endif; ?>
|
| 9 |
<?php if ($terms) { ?><div class="taxonomy">Tagged: <?php print $terms?></div><?php } ?>
|
| 10 |
<div class="content"><?php print $content?></div>
|
| 11 |
<?php if ($links) { ?><div class="links"><?php print $links?></div><?php }; ?>
|
| 12 |
</div>
|