| 1 |
<?php
|
| 2 |
// $Id: node.tpl.php,v 1.1.6.2 2008/11/28 06:14:30 andregriffin Exp $
|
| 3 |
?>
|
| 4 |
<div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?>">
|
| 5 |
|
| 6 |
<?php print $picture ?>
|
| 7 |
|
| 8 |
<?php if ($page == 0): ?>
|
| 9 |
<h2><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
|
| 10 |
<?php endif; ?>
|
| 11 |
|
| 12 |
<?php if ($submitted): ?>
|
| 13 |
<span class="submitted"><?php print $submitted; ?></span>
|
| 14 |
<?php endif; ?>
|
| 15 |
|
| 16 |
<div class="content">
|
| 17 |
<?php print $content ?>
|
| 18 |
</div>
|
| 19 |
|
| 20 |
<?php if ($links||$taxonomy){ ?>
|
| 21 |
<div class="meta">
|
| 22 |
|
| 23 |
<?php if ($links): ?>
|
| 24 |
<div class="links">
|
| 25 |
<?php print $links; ?>
|
| 26 |
</div>
|
| 27 |
<?php endif; ?>
|
| 28 |
|
| 29 |
<?php if ($taxonomy): ?>
|
| 30 |
<div class="terms">
|
| 31 |
<?php print $terms ?>
|
| 32 |
</div>
|
| 33 |
<?php endif;?>
|
| 34 |
|
| 35 |
<span class="clear"></span>
|
| 36 |
|
| 37 |
</div>
|
| 38 |
<?php }?>
|
| 39 |
|
| 40 |
</div>
|