| 1 |
<div class="node<?php print ($sticky) ? " sticky" : ""; ?>">
|
| 2 |
<?php if ($page == 0): ?>
|
| 3 |
<h2 class="title"><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
|
| 4 |
<?php endif; ?>
|
| 5 |
<?php print $picture ?>
|
| 6 |
|
| 7 |
<div class="content">
|
| 8 |
<?php print $content ?>
|
| 9 |
</div>
|
| 10 |
<?php if ($picture): ?>
|
| 11 |
<span class="clear"></span>
|
| 12 |
<?php endif; ?>
|
| 13 |
<?php if ($submitted): ?>
|
| 14 |
<div class="info"><?php print theme('username', $node) . ' – ' . str_replace('-', ' – ', format_date($node->created)) ?></div>
|
| 15 |
<?php endif; ?>
|
| 16 |
<?php if ($terms): ?>
|
| 17 |
<div class="terms"><?php print $terms ?></div>
|
| 18 |
<?php endif; ?>
|
| 19 |
<?php if ($links): ?>
|
| 20 |
<div class="links"><?php print $links ?></div>
|
| 21 |
<?php endif; ?>
|
| 22 |
</div>
|