| 1 |
<div class="node<?php print $sticky ? ' sticky' : '' ?><?php print $status ? '' : ' node-unpublished' ?>">
|
| 2 |
<div class="itemhead">
|
| 3 |
<?php if ($page == 0): ?><h2 class="title"><a href="<?php print $node_url?>"><?php print $title ?></a></h2><?php endif; ?>
|
| 4 |
<div class="metadata">
|
| 5 |
<?php if ($picture): print $picture; endif; ?>
|
| 6 |
<?php if (node_access('update', $node)): print l('', 'node/' . $node->nid . '/edit', array('class' => 'editlink', 'title' => t('Edit'))); endif;?>
|
| 7 |
<?php if ($submitted): ?><div class="chronodata"><?php print $submitted ?></div><?php endif; ?>
|
| 8 |
<?php if ($terms): ?><div class="tagdata"><?php print $terms ?></div><?php endif; ?>
|
| 9 |
</div>
|
| 10 |
</div>
|
| 11 |
<div class="content">
|
| 12 |
<?php print $content?>
|
| 13 |
<div class="metadata">
|
| 14 |
<?php if ($links): ?><div class="commentslink"><?php print $links ?></div><?php endif; ?>
|
| 15 |
</div>
|
| 16 |
</div>
|
| 17 |
</div>
|