| 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 or $has_terms): ?>
|
| 11 |
<div class="meta<?php if ($has_terms) : ?> with-taxonomy<?php endif; ?>">
|
| 12 |
|
| 13 |
<?php if ($submitted): ?>
|
| 14 |
<div class="submitted"><?php print t('Posted !date by !name', array('!date' => format_date($node->created, 'custom', "F jS, Y"), '!name' => theme('username', $node))); ?></div>
|
| 15 |
<?php endif; ?>
|
| 16 |
|
| 17 |
<?php if ($has_terms) : ?>
|
| 18 |
<div class="taxonomy"><?php print $terms ?></div>
|
| 19 |
<?php endif; ?>
|
| 20 |
|
| 21 |
</div>
|
| 22 |
<?php endif; ?>
|
| 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 |
|
| 34 |
</div>
|