| 1 |
<?php // $Id: node.tpl.php,v 1.3 2008/05/25 17:43:26 brauerranch Exp $ ?>
|
| 2 |
<div id="node-<?php print $node->nid ?>" class="node<?php if ($sticky): print ' sticky'; endif; ?><?php if (!$status): print ' node-unpublished'; endif; ?>">
|
| 3 |
<?php print $picture ?>
|
| 4 |
<?php if ($page == 0) { ?>
|
| 5 |
<h2 class="title"><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
|
| 6 |
<?php } ?>
|
| 7 |
<?php if ($submitted) { ?>
|
| 8 |
<p class="submitted"><?php print $submitted ?></p>
|
| 9 |
<?php } ?>
|
| 10 |
<div class="content">
|
| 11 |
<?php print $content ?>
|
| 12 |
</div>
|
| 13 |
<div class="meta">
|
| 14 |
<?php if ($taxonomy): print $terms; endif; ?>
|
| 15 |
</div>
|
| 16 |
<div class="comments_links">
|
| 17 |
<?php if ($links): print $links; endif; ?>
|
| 18 |
</div>
|
| 19 |
</div>
|