| 1 |
<?php
|
| 2 |
// $Id: node.tpl.php,v 1.2 2008/12/24 23:17:23 troy Exp $
|
| 3 |
?>
|
| 4 |
<div class="node<?php if ($sticky&&$page == 0) { print " sticky"; } ?><?php if (!$status) { print " node-unpublished"; } ?>">
|
| 5 |
<?php if ($picture) {
|
| 6 |
print $picture;
|
| 7 |
}?>
|
| 8 |
|
| 9 |
<span class="submitted"><?php print $submitted?></span>
|
| 10 |
|
| 11 |
<?php if ($page == 0) { ?><h2 class="title"><a href="<?php print $node_url?>"><?php print $title?></a></h2><?php }; ?>
|
| 12 |
|
| 13 |
|
| 14 |
<div class="content clear-block"><?php print $content?></div>
|
| 15 |
<?php if ($terms): ?><div class="taxonomy"><?php print $terms?></div><?php endif; ?>
|
| 16 |
<?php if ($links) { ?><div class="links">» <?php print $links?></div><?php }; ?>
|
| 17 |
</div>
|