| 1 |
<?php
|
| 2 |
// $Id$
|
| 3 |
|
| 4 |
/**
|
| 5 |
* @file
|
| 6 |
* NoProb template file for nodes.
|
| 7 |
*/
|
| 8 |
?>
|
| 9 |
|
| 10 |
<div id="node-<?php print $node->nid ?>" class="node<?php if ($sticky) print ' sticky'; if (!$status) print ' node-unpublished'; ?> clear-block">
|
| 11 |
<?php if ($page == 0) { ?>
|
| 12 |
<h2 class="title"><a href="<?php print $node_url ?>"><?php print $title ?></a></h2>
|
| 13 |
<?php } ?>
|
| 14 |
<?php if ($picture) { ?>
|
| 15 |
<?php print $picture ?>
|
| 16 |
<?php } ?>
|
| 17 |
<div class="content"><?php print $content ?></div>
|
| 18 |
<div class="meta clear-block">
|
| 19 |
<?php if ($links) { ?>
|
| 20 |
<div class="meta-links"><?php print $links ?></div>
|
| 21 |
<?php } ?>
|
| 22 |
<?php if ($submitted) { ?>
|
| 23 |
<div class="submitted">
|
| 24 |
<?php //print $submitted ?>
|
| 25 |
<?php print t('!date | !username', array('!username' => theme('username', $node), '!date' => format_date($node->created))) ?>
|
| 26 |
</div>
|
| 27 |
<?php } ?>
|
| 28 |
<?php if ($terms || $taxonomy) { ?>
|
| 29 |
<div class="terms"><?php print $terms ?></div>
|
| 30 |
<?php } ?>
|
| 31 |
</div>
|
| 32 |
</div>
|