| 1 |
<div class="node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?>">
|
| 2 |
<?php if ($page == 0): ?>
|
| 3 |
<h3 class="title">
|
| 4 |
<a href="<?php print $node_url ?>"><?php print $title; ?></a>
|
| 5 |
</h3>
|
| 6 |
<?php endif; ?>
|
| 7 |
|
| 8 |
<?php if ($picture) print $picture; ?>
|
| 9 |
|
| 10 |
<div class="submitted">
|
| 11 |
<?php
|
| 12 |
if ($submitted):
|
| 13 |
print t('Published by ') . theme('username', $node) .' on ' .format_date($node->created, 'custom', "F jS, Y") ;
|
| 14 |
$pred = " in ";
|
| 15 |
else:
|
| 16 |
$pred = "Filed in ";
|
| 17 |
endif;
|
| 18 |
|
| 19 |
if (count($taxonomy)):
|
| 20 |
print $pred.light_print_terms($node->nid);
|
| 21 |
endif; ?>
|
| 22 |
</div>
|
| 23 |
|
| 24 |
<div class="content">
|
| 25 |
<?php print $content; ?>
|
| 26 |
</div>
|
| 27 |
|
| 28 |
<?php if ($links): ?>
|
| 29 |
<div class="links">
|
| 30 |
<?php print $links; ?>
|
| 31 |
</div>
|
| 32 |
<?php endif; ?>
|
| 33 |
</div>
|