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