| 1 |
<?php // $Id: node.tpl.php,v 1.1.2.1 2008/07/22 23:35:28 couzinhub Exp $ ?>
|
| 2 |
|
| 3 |
<div class="node" id="node-<?php print $node->nid; ?>">
|
| 4 |
|
| 5 |
<?php if ($page == 0): ?>
|
| 6 |
<h2 class="title">
|
| 7 |
<a href="<?php print $node_url ?>"><?php print $title; ?></a>
|
| 8 |
</h2>
|
| 9 |
<?php endif; ?>
|
| 10 |
|
| 11 |
<div class="node-info">
|
| 12 |
|
| 13 |
<?php if ($submitted): ?>
|
| 14 |
<span class="submitted"><?php print t('Posted on ') . format_date($node->created, 'custom', "F jS, Y") . t(' by ') . theme('username', $node); ?></span>
|
| 15 |
<?php endif; ?>
|
| 16 |
|
| 17 |
<?php if (count($taxonomy)): ?>
|
| 18 |
<div class="taxonomy"><?php print t(' in ') . $terms ?></div>
|
| 19 |
<?php endif; ?>
|
| 20 |
|
| 21 |
<?php if ($links): ?>
|
| 22 |
<div class="links">
|
| 23 |
<?php print $links; ?>
|
| 24 |
</div>
|
| 25 |
<?php endif; ?>
|
| 26 |
|
| 27 |
|
| 28 |
</div>
|
| 29 |
|
| 30 |
|
| 31 |
<div class="content">
|
| 32 |
<?php if ($picture): ?>
|
| 33 |
<?php print $picture; ?>
|
| 34 |
<?php endif; ?>
|
| 35 |
<?php print $content; ?>
|
| 36 |
<div class="clear-block"></div>
|
| 37 |
</div>
|
| 38 |
|
| 39 |
</div>
|