| 1 |
<?php
|
| 2 |
if ($teaser) {?>
|
| 3 |
<div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?>">
|
| 4 |
<div class="Thesun">
|
| 5 |
<div class="Textcontiner">
|
| 6 |
<?php if ($page == 0): ?><div class="Textheadingcontiner"><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></div><?php endif; ?>
|
| 7 |
<div class="Datecontiner">
|
| 8 |
<div class="Datecontiner1"><?php print $submitted; ?></div>
|
| 9 |
</div>
|
| 10 |
<div class="Textcontiner2"><?php print $picture ?><?php print $content ?>
|
| 11 |
<div class="clear-block">
|
| 12 |
<div class="meta">
|
| 13 |
<?php if ($taxonomy): ?>
|
| 14 |
<div class="terms"><?php print $terms ?></div>
|
| 15 |
<?php endif;?>
|
| 16 |
</div>
|
| 17 |
|
| 18 |
<?php if ($links): ?>
|
| 19 |
<div class="links"><?php print $links; ?></div>
|
| 20 |
<?php endif; ?>
|
| 21 |
</div>
|
| 22 |
</div>
|
| 23 |
|
| 24 |
|
| 25 |
</div>
|
| 26 |
|
| 27 |
|
| 28 |
</div>
|
| 29 |
</div>
|
| 30 |
<?php } else {
|
| 31 |
//all other cases
|
| 32 |
//Anything here will show up when viewing your post at any other time, e.g. previews
|
| 33 |
?>
|
| 34 |
<?php
|
| 35 |
// $Id: node.tpl.php,v 1.5 2007/10/11 09:51:29 goba Exp $
|
| 36 |
?>
|
| 37 |
<div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?>">
|
| 38 |
<div class="Thesun">
|
| 39 |
<div class="Textcontiner">
|
| 40 |
<?php if ($page == 0): ?><div class="Textheadingcontiner"><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></div><?php endif; ?>
|
| 41 |
<div class="Datecontiner">
|
| 42 |
<div class="Datecontiner1"><?php print $submitted; ?></div>
|
| 43 |
</div>
|
| 44 |
<div class="Textcontiner2"><?php print $picture ?><?php print $content ?>
|
| 45 |
<div class="clear-block">
|
| 46 |
<div class="meta">
|
| 47 |
<?php if ($taxonomy): ?>
|
| 48 |
<div class="terms"><?php print $terms ?></div>
|
| 49 |
<?php endif;?>
|
| 50 |
</div>
|
| 51 |
|
| 52 |
<?php if ($links): ?>
|
| 53 |
<div class="links"><?php print $links; ?></div>
|
| 54 |
<?php endif; ?>
|
| 55 |
</div>
|
| 56 |
</div>
|
| 57 |
|
| 58 |
|
| 59 |
</div>
|
| 60 |
|
| 61 |
</div>
|
| 62 |
</div>
|
| 63 |
<?php } ?>
|