| 1 |
<div class="node<?php print ($sticky) ? " sticky" : ""; ?>">
|
| 2 |
<?php if ($page == 0): ?>
|
| 3 |
<h2><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
|
| 4 |
<?php endif; ?>
|
| 5 |
<?php print $picture ?>
|
| 6 |
<div class="info-top"></div>
|
| 7 |
<?php if (theme_get_setting('toggle_node_info_' . $node->type) == 1): ?>
|
| 8 |
<div class="info">Posted On: <?php print $date ?> by <?php print $name ?></div>
|
| 9 |
<?php endif; ?>
|
| 10 |
<div class="content">
|
| 11 |
<?php print $content ?>
|
| 12 |
</div>
|
| 13 |
<?php if ($links): ?>
|
| 14 |
<?php if ($picture): ?>
|
| 15 |
<br class='clear' />
|
| 16 |
<?php endif; ?>
|
| 17 |
<div class="links"><?php print $links ?></div>
|
| 18 |
<?php endif; ?>
|
| 19 |
<?php if ($terms): ?>
|
| 20 |
<div class="terms">( categories: <?php print $terms ?> )</div>
|
| 21 |
<?php endif; ?>
|
| 22 |
</div>
|