| 1 |
<?php
|
| 2 |
// $Id$
|
| 3 |
?>
|
| 4 |
|
| 5 |
<?php phptemplate_comment_wrapper(NULL, $node->type); ?>
|
| 6 |
<div class="comms">
|
| 7 |
<div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?>">
|
| 8 |
|
| 9 |
<?php print $picture ?>
|
| 10 |
|
| 11 |
<?php if ($page == 0): ?>
|
| 12 |
<h2><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
|
| 13 |
<?php endif; ?>
|
| 14 |
|
| 15 |
<?php if ($submitted): ?>
|
| 16 |
<span class="submitted"><?php print t('!date — !username', array('!username' => theme('username', $node), '!date' => format_date($node->created))); ?></span>
|
| 17 |
<?php endif; ?>
|
| 18 |
|
| 19 |
<div class="content">
|
| 20 |
<?php print $content ?>
|
| 21 |
</div>
|
| 22 |
|
| 23 |
<div class="clear-block clear">
|
| 24 |
<div class="meta">
|
| 25 |
<?php if ($taxonomy): ?>
|
| 26 |
<div class="terms"><?php print $terms ?></div>
|
| 27 |
<?php endif;?>
|
| 28 |
</div>
|
| 29 |
|
| 30 |
<?php if ($links): ?>
|
| 31 |
<div class="links"><?php print $links; ?></div>
|
| 32 |
<?php endif; ?>
|
| 33 |
</div>
|
| 34 |
|
| 35 |
</div>
|
| 36 |
</div>
|