| 1 |
<?php
|
| 2 |
// $Id$
|
| 3 |
?>
|
| 4 |
<div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?>">
|
| 5 |
|
| 6 |
|
| 7 |
<?php if ($page == 0): ?>
|
| 8 |
<h2><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
|
| 9 |
<?php endif; ?>
|
| 10 |
|
| 11 |
<div class="clear-block">
|
| 12 |
<?php if ($picture) print $picture; ?>
|
| 13 |
<?php if ($submitted): ?>
|
| 14 |
<span class="submitted_author"><?php print theme('username', $node)?></span>
|
| 15 |
<span class="submitted"><?php print t('Posted at ') . format_date($node->created, 'custom', "H:i o\\n D, m/d/Y"); ?></span>
|
| 16 |
<?php endif; ?>
|
| 17 |
<?php if ($taxonomy): ?>
|
| 18 |
<div class="terms"><?php print t('<b>Tags:</b> ').$terms ?></div>
|
| 19 |
<?php endif;?>
|
| 20 |
</div>
|
| 21 |
|
| 22 |
<div class="content">
|
| 23 |
<?php print $content ?>
|
| 24 |
</div>
|
| 25 |
|
| 26 |
<div class="clear-block">
|
| 27 |
<?php if ($links): ?>
|
| 28 |
<div class="links"><?php print $links; ?></div>
|
| 29 |
<?php endif; ?>
|
| 30 |
</div>
|
| 31 |
|
| 32 |
</div>
|