| 1 |
<div class="node" id="node-<?php print $node->nid; ?>"><div class="node-inner">
|
| 2 |
|
| 3 |
<?php if ($page == 0): ?>
|
| 4 |
<h2 class="title">
|
| 5 |
<a href="<?php print $node_url; ?>"><?php print $title; ?></a>
|
| 6 |
</h2>
|
| 7 |
<?php endif; ?>
|
| 8 |
|
| 9 |
|
| 10 |
|
| 11 |
<?php if ($picture) print $picture; ?>
|
| 12 |
|
| 13 |
<?php if ($submitted): ?>
|
| 14 |
<div class="submitted">
|
| 15 |
<?php print $submitted; ?>
|
| 16 |
</div>
|
| 17 |
<?php endif; ?>
|
| 18 |
|
| 19 |
<div class="content">
|
| 20 |
<?php print $content; ?>
|
| 21 |
</div>
|
| 22 |
|
| 23 |
<?php if ($links || count($taxonomy)): ?>
|
| 24 |
<div class="links">
|
| 25 |
<?php print $links; ?><div class="taxonomy-terms"><?php print $terms; ?></div>
|
| 26 |
<span class="clear"></span>
|
| 27 |
</div>
|
| 28 |
<?php endif; ?>
|
| 29 |
|
| 30 |
</div></div> <!-- /node-inner, /node -->
|