| 1 |
<?php
|
| 2 |
// $Id: node.tpl.php,v 1.2.2.2 2008/06/19 08:14:41 hswong3i Exp $
|
| 3 |
?>
|
| 4 |
<div class="node<?php print $sticky ? ' sticky' : '' ?><?php print $status ? '' : ' node-unpublished' ?>">
|
| 5 |
<?php if (!$page): ?><h2 class="title"><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2><?php endif; ?>
|
| 6 |
<div class="meta meta-header">
|
| 7 |
<?php if ($picture): print $picture; endif; ?>
|
| 8 |
<?php if (node_access('update', $node)): ?><a href="<?php print url('node/'. $node->nid .'/edit') ?>" class="editlink" title="<?php print t('Edit') ?>"> </a><?php endif; ?>
|
| 9 |
<?php if ($submitted): ?><div class="submitted"><?php print $submitted ?></div><?php endif; ?>
|
| 10 |
<?php if ($terms): ?><div class="terms"><?php print $terms ?></div><?php endif; ?>
|
| 11 |
</div>
|
| 12 |
<div class="content">
|
| 13 |
<?php print $content?>
|
| 14 |
<div class="meta meta-footer">
|
| 15 |
<?php if ($links): ?><?php print $links ?><?php endif; ?>
|
| 16 |
</div>
|
| 17 |
</div>
|
| 18 |
</div>
|