| 1 |
<?php
|
| 2 |
// $Id$
|
| 3 |
?>
|
| 4 |
|
| 5 |
<?php if ($page == 0): ?>
|
| 6 |
|
| 7 |
<div class="node<?php if ($sticky) { print " sticky"; } ?><?php if (!$status) { print " node-unpublished"; } ?>">
|
| 8 |
|
| 9 |
<?php if ($picture) { print $picture; }?>
|
| 10 |
|
| 11 |
<div class="date_box">
|
| 12 |
<div class="date_box_month"> <?php print (format_date($node->created, 'custom', 'M')) ?> </div>
|
| 13 |
<div class="date_box_day"> <?php print (format_date($node->created, 'custom', 'd')) ?> </div>
|
| 14 |
</div>
|
| 15 |
|
| 16 |
<?php if ($page == 0) { ?><h3><a href="<?php print $node_url?>"><?php print $title?></a></h3><?php }; ?>
|
| 17 |
<div class="taxonomy"><?php print $terms?></div>
|
| 18 |
<div class="content"><?php print $content?></div>
|
| 19 |
<?php if ($links) { ?><div class="links"><?php print $links?></div><?php }; ?>
|
| 20 |
</div>
|
| 21 |
|
| 22 |
<?php endif; ?>
|
| 23 |
|
| 24 |
|
| 25 |
<?php if ($page == 1): ?>
|
| 26 |
|
| 27 |
<div class="node<?php if ($sticky) { print " sticky"; } ?><?php if (!$status) { print " node-unpublished"; } ?>">
|
| 28 |
<?php if ($picture) { print $picture; }?>
|
| 29 |
<?php if ($page == 0) { ?><h2 class="title"><a href="<?php print $node_url?>"><?php print $title?></a></h2><?php }; ?>
|
| 30 |
<span class="submitted"><?php print $submitted?></span>
|
| 31 |
<div class="taxonomy"><?php print $terms?></div>
|
| 32 |
<div class="content"><?php print $content?></div>
|
| 33 |
<?php if ($links) { ?><div class="links"><?php print $links?></div><?php }; ?>
|
| 34 |
</div>
|
| 35 |
|
| 36 |
<?php endif; ?>
|