| 1 |
<?php phptemplate_comment_wrapper(NULL, $node->type); ?>
|
| 2 |
|
| 3 |
<?php if ($page == 0): ?>
|
| 4 |
<div id="node-<?php print $node->nid; ?>" class="post node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?>">
|
| 5 |
<div class="post-date"><span class="post-month"><?php print (format_date($node->created, 'custom', 'M')) ?></span> <span class="post-day"><?php print (format_date($node->created, 'custom', 'd')) ?></span></div>
|
| 6 |
<div class="entry">
|
| 7 |
<h2><a href="<?php print $node_url ?>" rel="bookmark" title="Permanent Link to <?php print $title ?>"><?php print $title ?></a></h2>
|
| 8 |
<?php if ($taxonomy): ?><span class="post-cat"><?php print $terms ?></span><?php endif;?><?php if ($links): ?><span class="post-comments"><?php print $links; ?></span><?php endif; ?>
|
| 9 |
<div class="post-content">
|
| 10 |
<?php print $content ?>
|
| 11 |
</div>
|
| 12 |
</div>
|
| 13 |
<?php endif; ?>
|
| 14 |
|
| 15 |
<?php if ($page == 1): ?>
|
| 16 |
<div style="margin-top: -10px" id="node-<?php print $node->nid; ?>" class="post node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?>">
|
| 17 |
<?php if ($taxonomy): ?><span class="post-cat"><?php print $terms ?></span><?php endif;?><span class="post-calendar"><?php print (format_date($node->created)) ?></span>
|
| 18 |
<div class="post-content">
|
| 19 |
<?php print $content ?>
|
| 20 |
<?php print $links; ?>
|
| 21 |
</div>
|
| 22 |
<?php endif; ?>
|
| 23 |
</div>
|
| 24 |
<div class="clear"></div>
|