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