| 1 |
|
| 2 |
<!-- start node -->
|
| 3 |
<div id="node-<?php print $node->nid; ?>" class="node <?php print $node_classes; ?>">
|
| 4 |
<?php if ($page == 0): ?>
|
| 5 |
<h2 class="nodetitle"><a href="<?php print $node_url ?>"><?php print $title ?></a></h2>
|
| 6 |
<?php endif; ?>
|
| 7 |
<?php if ($unpublished): ?>
|
| 8 |
<div class="unpublished"><?php print t('Unpublished') ?></div>
|
| 9 |
<?php endif; ?>
|
| 10 |
<div class="meta">
|
| 11 |
<?php if ($submitted): ?>
|
| 12 |
<div class="submitted"><?php print $submitted ?></div>
|
| 13 |
<?php endif; ?>
|
| 14 |
<?php if ($terms): ?>
|
| 15 |
<div class="terms"><?php print $terms ?></div>
|
| 16 |
<?php endif; ?>
|
| 17 |
</div>
|
| 18 |
<?php print $picture ?>
|
| 19 |
<div class="content clear-block"><?php print $content ?></div>
|
| 20 |
<?php if ($links): ?>
|
| 21 |
<div class="links">» <?php print $links ?></div>
|
| 22 |
<?php endif; ?>
|
| 23 |
</div>
|