| 1 |
<?php
|
| 2 |
// $Id$
|
| 3 |
?>
|
| 4 |
<div class="node<?php print ($sticky) ? " sticky" : ""; ?>">
|
| 5 |
<?php if ($page == 0) { ?>
|
| 6 |
<h2><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
|
| 7 |
<?php } elseif ($picture) { ?>
|
| 8 |
<div class="left"><?php print $picture ?></div>
|
| 9 |
<?php }; ?>
|
| 10 |
<div class="content clearfix"><?php print $content ?></div>
|
| 11 |
<?php if ($links) { ?>
|
| 12 |
<div class="info clearfix">
|
| 13 |
<?php if ($terms) { print t("Posted in") . ' ' . $terms; }; ?>
|
| 14 |
<?php if ($submitted) { ?>
|
| 15 |
<?php print $submitted ?>
|
| 16 |
<br />
|
| 17 |
<?php }; ?>
|
| 18 |
<?php print $links ?>
|
| 19 |
</div>
|
| 20 |
<?php } else { ?>
|
| 21 |
<div class="info clearfix"><br /></div>
|
| 22 |
<?php }; ?>
|
| 23 |
</div>
|