| 1 |
<div class="node<?php if ($sticky) { print " sticky"; } ?>
|
| 2 |
<?php if (!$status) { print " node-unpublished"; } ?>">
|
| 3 |
|
| 4 |
<table cellspacing="0" cellpadding="0" border="0" class="node_title">
|
| 5 |
<tr>
|
| 6 |
<td class="node_title_l"> </td>
|
| 7 |
<?php if ($page == 0) { /*first page*/ ?>
|
| 8 |
<td class="node_title_m"><a href="<?php print $node_url?>"><?php print $title?></a></td>
|
| 9 |
<?php }else{; /* other page*/ ?>
|
| 10 |
<td class="node_title_m"><?php print $title?></td>
|
| 11 |
<?php }; ?>
|
| 12 |
<td class="node_title_r"> </td>
|
| 13 |
</tr>
|
| 14 |
</table>
|
| 15 |
|
| 16 |
<table cellspacing="0" cellpadding="0" border="0" width="100%">
|
| 17 |
<tr><td class="submitted"><?php print $submitted?><span class="taxonomy"><?php if($terms){print $terms;} ?></span></td></tr>
|
| 18 |
<tr><td class="content"><?php if ($picture){print $picture;} ?><?php print $content?></td></tr>
|
| 19 |
</table>
|
| 20 |
|
| 21 |
<?php if ($links) { ?><div class="links">» <?php print $links?></div><?php }; ?>
|
| 22 |
</div>
|