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