| 1 |
<?php
|
| 2 |
// $Id: node.tpl.php,v 1.5 2007/10/11 09:51:29 goba Exp $
|
| 3 |
?>
|
| 4 |
<div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?> mainbg">
|
| 5 |
|
| 6 |
<?php print $picture ?>
|
| 7 |
|
| 8 |
<div class="calendar"><small><?php print format_date($node->created, 'custom', 'M'); ?></small> <strong><?php print format_date($node->created, 'custom', 'd'); ?></strong></div>
|
| 9 |
<?php if ($page == 0): ?>
|
| 10 |
<div class="numbercomments">
|
| 11 |
<?php print '<a href="'.$node_url.'#comments">'.$comment_count.'</a>'; ?>
|
| 12 |
</div>
|
| 13 |
<?php endif; ?>
|
| 14 |
<h1 class="post"><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h1>
|
| 15 |
|
| 16 |
<div class="bottombg">
|
| 17 |
<div class="buffer">
|
| 18 |
<?php if ($submitted): ?>
|
| 19 |
<div class="posted"><?php print $submitted; ?></div>
|
| 20 |
<?php endif; ?>
|
| 21 |
<?php print $content ?>
|
| 22 |
<p> <a class="more-link" href="<?php print $node_url ?>">(more...)</a></p>
|
| 23 |
<?php if ($taxonomy): ?>
|
| 24 |
<div class="postfooter"><span class="tags">Tags: <?php print $terms ?></span></div>
|
| 25 |
<?php endif;?>
|
| 26 |
</div>
|
| 27 |
</div>
|
| 28 |
</div>
|