| 1 |
<?php phptemplate_comment_wrapper(NULL, $node->type); ?>
|
| 2 |
|
| 3 |
|
| 4 |
<div class="node<?php if ($sticky) { print " sticky"; } ?><?php if (!$status) { print " node-unpublished"; } ?>" id="node-<?php print $node->nid; ?>">
|
| 5 |
<?php if ($page == 0): ?> <h2 class="title"> <a href="<?php print $node_url ?>"><?php print $title ?></a> </h2> <?php endif; ?>
|
| 6 |
|
| 7 |
<?php if ($picture) print $picture ?>
|
| 8 |
|
| 9 |
<?php if ($submitted or $has_terms): ?> <div class="meta<?php if ($has_terms) : ?> with-taxonomy<?php endif; ?>">
|
| 10 |
|
| 11 |
<?php if ($submitted): ?>
|
| 12 |
<div class="post-date">
|
| 13 |
<span class="post-year"><?php print (format_date($node->created, 'custom', 'Y')) ?></span>
|
| 14 |
<span class="post-month"><?php print (format_date($node->created, 'custom', 'M')) ?></span>
|
| 15 |
<span class="post-day"><?php print (format_date($node->created, 'custom', 'd')) ?></span>
|
| 16 |
</div>
|
| 17 |
|
| 18 |
<span class="author"><?php print theme('username', $node); ?></span>
|
| 19 |
<?php endif; ?>
|
| 20 |
|
| 21 |
<?php if ($taxonomy) : ?><?php print $terms; ?><?php endif; ?>
|
| 22 |
|
| 23 |
</div>
|
| 24 |
|
| 25 |
<?php endif; ?>
|
| 26 |
|
| 27 |
<div class="content">
|
| 28 |
<?php print $content?>
|
| 29 |
</div>
|
| 30 |
|
| 31 |
<?php if ($links): ?> <div class="links"> <?php print $links ?> </div> <?php endif; ?>
|
| 32 |
|
| 33 |
</div>
|
| 34 |
|