| 1 |
<div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?> clear-block">
|
| 2 |
|
| 3 |
<?php print $picture ?>
|
| 4 |
|
| 5 |
<?php if ($page == 0): ?>
|
| 6 |
<h2><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
|
| 7 |
<?php endif; ?>
|
| 8 |
|
| 9 |
<div class="meta">
|
| 10 |
<?php if ($submitted): ?>
|
| 11 |
<span class="submitted">
|
| 12 |
<?php print 'Published ' . format_date($node->created, 'custom', 'F j, Y, g:i a') . ' | ' . 'by ' . theme('username', $node); ?>
|
| 13 |
</span>
|
| 14 |
<?php endif; ?>
|
| 15 |
|
| 16 |
<div class="content">
|
| 17 |
<?php print $content ?>
|
| 18 |
</div>
|
| 19 |
|
| 20 |
<?php if ($terms): ?>
|
| 21 |
<div id="tax">
|
| 22 |
<span class="terms">
|
| 23 |
<div class="filed">Categories: </div><?php print $terms ?>
|
| 24 |
</span>
|
| 25 |
</div>
|
| 26 |
<?php endif;?>
|
| 27 |
</div>
|
| 28 |
|
| 29 |
<div id="links">
|
| 30 |
<?php
|
| 31 |
if ($links) {
|
| 32 |
print $links;
|
| 33 |
}
|
| 34 |
?>
|
| 35 |
</div>
|
| 36 |
|
| 37 |
</div>
|