| 1 |
<div class="node<?php if ($sticky) { print " sticky"; } ?>">
|
| 2 |
<?php if ($picture) {
|
| 3 |
print $picture;
|
| 4 |
}?>
|
| 5 |
<?php if ($page == 0) { ?><h2 class="title"><a href="<?php print $node_url?>"><?php print $title?></a></h2><?php }; ?>
|
| 6 |
<span class="submitted"><?php print $submitted?></span>
|
| 7 |
<span class="taxonomy"><?php print $terms?></span>
|
| 8 |
|
| 9 |
<div class="content">
|
| 10 |
<table class="node-content-table"><tr>
|
| 11 |
<td class="node-body">
|
| 12 |
<?php print $content ?>
|
| 13 |
</td>
|
| 14 |
|
| 15 |
<?php if ($node->node_images) { ?>
|
| 16 |
<!-- Node images -->
|
| 17 |
<td class="node-images" rowspan="2">
|
| 18 |
<?php print $node->node_images ?><?php ?>
|
| 19 |
<div style="text-align:center;">
|
| 20 |
<a href="<?php print url('node/'.$node->nid.'/image_gallery'); ?>">Gallery</a>
|
| 21 |
</div>
|
| 22 |
</td>
|
| 23 |
<?php }?>
|
| 24 |
|
| 25 |
</tr><tr>
|
| 26 |
</tr></table>
|
| 27 |
</div>
|
| 28 |
|
| 29 |
<?php if ($links) { ?>
|
| 30 |
<div class="links">» <?php print $links?></div>
|
| 31 |
<?php }?>
|
| 32 |
</div>
|