| 1 |
<?php
|
| 2 |
// $Id$
|
| 3 |
?>
|
| 4 |
|
| 5 |
<div class="<?php print $node_classes ?>" id="node-<?php print $node->nid; ?>">
|
| 6 |
<?php if ($page == 0): ?>
|
| 7 |
<h2 class="title">
|
| 8 |
<a href="<?php print $node_url ?>"><?php print $title; ?></a>
|
| 9 |
</h2>
|
| 10 |
<?php endif; ?>
|
| 11 |
|
| 12 |
<?php if ($picture) print $picture; ?>
|
| 13 |
|
| 14 |
<?php if ($submitted): ?>
|
| 15 |
<span class="submitted"><?php print t('Posted ') . format_date($node->created, 'custom', "F jS, Y") . t(' by ') . theme('username', $node); ?></span>
|
| 16 |
<?php endif; ?>
|
| 17 |
|
| 18 |
<?php if (count($taxonomy)): ?>
|
| 19 |
<div class="taxonomy"><?php print t(' in ') . $terms ?></div>
|
| 20 |
<?php endif; ?>
|
| 21 |
|
| 22 |
<div class="content">
|
| 23 |
<?php print $content; ?>
|
| 24 |
</div>
|
| 25 |
|
| 26 |
<?php if ($links): ?>
|
| 27 |
<div class="links">
|
| 28 |
<?php print $links; ?>
|
| 29 |
</div>
|
| 30 |
<?php endif; ?>
|
| 31 |
|
| 32 |
</div>
|