| 1 |
<div class="<?php print $node_classes ?>" id="node-<?php print $node->nid; ?>">
|
| 2 |
|
| 3 |
<?php if ($page == 0): ?>
|
| 4 |
|
| 5 |
<?php
|
| 6 |
if($type!='storymin') {
|
| 7 |
?>
|
| 8 |
<h1 class="title">
|
| 9 |
<a href="<?php print $node_url ?>"><?php print $title; ?></a>
|
| 10 |
</h1>
|
| 11 |
<?php
|
| 12 |
} else {
|
| 13 |
?>
|
| 14 |
<h1 class="title">
|
| 15 |
<?php print $title; ?>
|
| 16 |
</h1>
|
| 17 |
<?php
|
| 18 |
}
|
| 19 |
?>
|
| 20 |
|
| 21 |
<?php endif; ?>
|
| 22 |
|
| 23 |
<?php if ($picture) print $picture; ?>
|
| 24 |
|
| 25 |
|
| 26 |
|
| 27 |
|
| 28 |
<?php if ($type!='storymin'): ?>
|
| 29 |
<?php if ($submitted): ?>
|
| 30 |
<span class="submitted"><?php print format_date($node->created, 'custom', "F jS, Y") . theme('username', $node); ?></span>
|
| 31 |
<?php endif; ?>
|
| 32 |
|
| 33 |
<?php if (count($taxonomy)): ?>
|
| 34 |
<div class="taxonomy"><?php print t(' in ') . $terms ?></div>
|
| 35 |
<?php endif; ?>
|
| 36 |
<?php endif; ?>
|
| 37 |
|
| 38 |
<div class="content">
|
| 39 |
<?php print $content; ?>
|
| 40 |
</div>
|
| 41 |
|
| 42 |
<?php if ($type!='storymin'): ?>
|
| 43 |
<?php if ($links): ?>
|
| 44 |
<div class="links">
|
| 45 |
<?php print $links; ?>
|
| 46 |
</div>
|
| 47 |
<?php endif; ?>
|
| 48 |
<?php endif; ?>
|
| 49 |
|
| 50 |
</div>
|