| 1 |
<?php
|
| 2 |
$day = format_date($node->created, 'custom', 'd');
|
| 3 |
$month = format_date($node->created, 'custom', 'M');
|
| 4 |
?>
|
| 5 |
|
| 6 |
<div class="node<?php print ($sticky) ? " sticky" : ""; ?>">
|
| 7 |
<?php if ($page == 0) { ?>
|
| 8 |
<h2><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
|
| 9 |
<div class="date">
|
| 10 |
<span class="month"><?php print $month ?></span>
|
| 11 |
<span class="day"><?php print $day ?></span>
|
| 12 |
</div>
|
| 13 |
|
| 14 |
<?php } else { ?>
|
| 15 |
<?php print $picture ?>
|
| 16 |
<?php }; ?>
|
| 17 |
|
| 18 |
|
| 19 |
<div class="content">
|
| 20 |
<?php print $content ?>
|
| 21 |
</div>
|
| 22 |
|
| 23 |
<?php if ($submitted) { ?>
|
| 24 |
<span class="submitted">
|
| 25 |
by <?php print theme('username', $node);?>
|
| 26 |
</span>
|
| 27 |
<?php } ?>
|
| 28 |
<div class="clear"></div>
|
| 29 |
|
| 30 |
<?php if ($links) { ?>
|
| 31 |
<div class="info">
|
| 32 |
<?php print $links ?>
|
| 33 |
</div>
|
| 34 |
<?php }; ?>
|
| 35 |
|
| 36 |
</div>
|