| 1 |
<div class="node<?php if ($sticky) { print " sticky"; } ?><?php if (!$status) { print " node-unpublished"; } ?>" id="node-<?php print $node->nid; ?>">
|
| 2 |
|
| 3 |
<?php if ($submitted): ?> <div class="submitted"><span class="date"><?php print ( format_date($node->created, 'custom', 'd')) ?> <?php print (format_date($node->created, 'custom', 'M')) ?> <?php print (format_date($node->created, 'custom', 'Y')) ?></span> <span class="author"><?php print (theme('username', $node)) ?></span></div> <?php endif; ?>
|
| 4 |
|
| 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 |
<div class="content"> <?php print $content?> </div>
|
| 10 |
|
| 11 |
<?php if ($page != 0): ?> <div class="meta">
|
| 12 |
<?php if ($has_terms) : ?> <div class="taxonomy"><?php print $terms ?></div> <?php endif; ?>
|
| 13 |
|
| 14 |
<?php if ($links): ?> <div class="links"> <?php print $links ?> </div> <?php endif; ?>
|
| 15 |
</div> <?php endif; ?>
|
| 16 |
|
| 17 |
</div>
|