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