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