| 1 |
<div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky && $page == 0) { print ' node-sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?><?php if ($page != 0) { print ' node-page'; } ?>">
|
| 2 |
<?php if ($page == 0): ?>
|
| 3 |
<div class="node-top"><div class="top-right"><div class="top-middle"></div></div></div>
|
| 4 |
<?php endif; ?>
|
| 5 |
<div class="node-body">
|
| 6 |
<?php print $picture; ?>
|
| 7 |
<div class="node-title clear-block">
|
| 8 |
<?php if ($page == 0): ?>
|
| 9 |
<h2 class="title"><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
|
| 10 |
<?php endif; ?>
|
| 11 |
<?php if ($submitted): ?>
|
| 12 |
<div class="submitted">
|
| 13 |
<?php if ($page == 0): ?>
|
| 14 |
<div class="left">
|
| 15 |
<?php endif; ?>
|
| 16 |
<p<?php print ($page == 0) ? ' class="right"' : '' ?>>
|
| 17 |
<?php print $submitted; ?>
|
| 18 |
</p>
|
| 19 |
<?php if ($page == 0): ?>
|
| 20 |
</div>
|
| 21 |
<?php endif; ?>
|
| 22 |
</div>
|
| 23 |
<?php endif; ?>
|
| 24 |
</div>
|
| 25 |
|
| 26 |
<div class="content">
|
| 27 |
<?php print $content ?>
|
| 28 |
</div>
|
| 29 |
|
| 30 |
<div class="clear-block clear">
|
| 31 |
<div class="meta">
|
| 32 |
<?php if ($taxonomy): ?>
|
| 33 |
<div class="terms"><?php print $terms ?></div>
|
| 34 |
<?php endif;?>
|
| 35 |
</div>
|
| 36 |
|
| 37 |
<?php if ($links): ?>
|
| 38 |
<div class="links"><?php print $links; ?></div>
|
| 39 |
<?php endif; ?>
|
| 40 |
</div>
|
| 41 |
<div class="hr"><span></span></div>
|
| 42 |
</div>
|
| 43 |
</div>
|