| 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 if ($page == 0): ?>
|
| 4 |
<h2><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
|
| 5 |
<?php endif; ?>
|
| 6 |
|
| 7 |
<?php if ($submitted || $terms): ?>
|
| 8 |
<div class="meta">
|
| 9 |
<?php if ($submitted): ?>
|
| 10 |
<div class="submitted"><?php print $submitted ?></div>
|
| 11 |
<?php endif; ?>
|
| 12 |
|
| 13 |
</div>
|
| 14 |
<?php endif; ?>
|
| 15 |
|
| 16 |
<div class="content clear-block">
|
| 17 |
<?php print $picture ?>
|
| 18 |
<?php print $content ?>
|
| 19 |
</div>
|
| 20 |
|
| 21 |
<?php
|
| 22 |
if ($links) {
|
| 23 |
print '<div class="node-links">'. $links .'</div>';
|
| 24 |
}
|
| 25 |
if ($terms) {
|
| 26 |
print '<div class="terms">'.t('Tags').': '. $terms .'</div>';
|
| 27 |
}
|
| 28 |
?>
|
| 29 |
|
| 30 |
</div>
|