| 1 |
<div class="<?php print $node_classes ?>" id="node-<?php print $node->nid; ?>"> |
<div class="<?php print $node_classes ?>" id="node-<?php print $node->nid; ?>"> |
| 2 |
<?php if ($page == 0): ?> |
<?php if ($page == 0): ?> |
| 3 |
<h2 class="title"> |
<h2 class="title"> |
| 4 |
<a href="<?php print $node_url ?>"><?php print $title; ?></a> |
<a href="<?php print $node_url ?>"><?php print $title; ?></a> |
| 5 |
</h2> |
</h2> |
| 6 |
<?php endif; ?> |
<?php endif; ?> |
| 7 |
|
|
| 8 |
<?php if ($picture) print $picture; ?> |
<?php if ($submitted): ?> |
| 9 |
|
<div class="submitted"><?php print t('Posted on ') . format_date($node->created, 'custom', 'F jS, Y') . t(' by ') . $picture . theme('username', $node); ?></div> |
| 10 |
<?php if ($submitted): ?> |
<?php endif; ?> |
|
<span class="submitted"><?php print t('Posted ') . format_date($node->created, 'custom', "F jS, Y") . t(' by ') . theme('username', $node); ?></span> |
|
|
<?php endif; ?> |
|
| 11 |
|
|
| 12 |
<?php if (count($taxonomy)): ?> |
<?php if (count($taxonomy)): ?> |
| 13 |
<div class="taxonomy"><?php print t(' in ') . $terms ?></div> |
<div class="taxonomy"><?php print t(' in ') . $terms ?></div> |
| 14 |
<?php endif; ?> |
<?php endif; ?> |
| 15 |
|
|
| 16 |
<div class="content"> |
<div class="content"> |
| 17 |
<?php print $content; ?> |
<?php print $content; ?> |
| 18 |
</div> |
</div> |
| 19 |
|
|
| 20 |
<?php if ($links): ?> |
<?php if ($links): ?> |
| 21 |
<div class="links"> |
<div class="links"> |
| 22 |
<?php print $links; ?> |
<?php print $links; ?> |
| 23 |
</div> |
</div> |
| 24 |
<?php endif; ?> |
<?php endif; ?> |
| 25 |
|
|
| 26 |
</div> |
</div> |