| 1 |
<?php /* $Id: node.tpl.php,v 1.3 2006/06/23 21:22:50 rkerr Exp $ */ ?>
|
| 2 |
<div id="node-<?php print $node->nid; ?>" class="node<?php print (!$page && $sticky) ? " featurebox" : ""; ?>">
|
| 3 |
<?php if (!$page && $title): ?>
|
| 4 |
<h2>
|
| 5 |
<?php if ($submitted): ?>
|
| 6 |
<span class="date"><?php print $submitted; ?></span>
|
| 7 |
<?php endif; ?>
|
| 8 |
<a href="<?php print $node_url; ?>" title="<?php print $title; ?>"><?php print $title; ?></a>
|
| 9 |
</h2>
|
| 10 |
<?php endif; ?>
|
| 11 |
<?php print $picture; ?>
|
| 12 |
<?php print $content; ?>
|
| 13 |
<?php print ($picture ? '<br class="clear" />' : ''); ?>
|
| 14 |
<?php if ($terms): ?>
|
| 15 |
<div class="terms"><?php print t('posted in:'); ?> <?php print implode(', ', $taxonomy); ?></div>
|
| 16 |
<?php endif; ?>
|
| 17 |
<div class="links"><?php print $links; ?></div>
|
| 18 |
</div>
|
| 19 |
|
| 20 |
<hr />
|