| 1 |
<div id="node-<?php print $node->nid; ?>" class="c_node node<?php
|
| 2 |
if ($sticky) {print ' node-sticky';}
|
| 3 |
if (!$status) {print ' node-unpublished';}
|
| 4 |
print ' node-nid_'.$node->nid;
|
| 5 |
print ' node-type_'.$node->type;
|
| 6 |
?>">
|
| 7 |
<div class="c_node-subStyle">
|
| 8 |
|
| 9 |
<?php if ($page == 0) { ?>
|
| 10 |
<h2 class="c_node_title">
|
| 11 |
<a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title; ?></a>
|
| 12 |
</h2>
|
| 13 |
<?php } ?>
|
| 14 |
|
| 15 |
<?php if ($submitted) { ?>
|
| 16 |
<span class="c_node-submitted submitted">
|
| 17 |
<?php print t('Published') .' '; ?>
|
| 18 |
<?php print '<span class="username">' . t('!username', array('!username' => theme('username', $node))) .'</span> '; ?>
|
| 19 |
<?php print '<span class="datetime">' . t('!datetime', array('!datetime' => format_date($node->created /* $node->changed */, 'custom', 'D, d/m/Y - H:i'))) . '</span>'; ?>
|
| 20 |
</span>
|
| 21 |
<?php } ?>
|
| 22 |
|
| 23 |
<?php if (strlen($picture) > 50) { ?>
|
| 24 |
<div class="c_user_picture">
|
| 25 |
<?php print $picture ?>
|
| 26 |
</div>
|
| 27 |
<?php } ?>
|
| 28 |
|
| 29 |
<div class="c_node_content content">
|
| 30 |
<?php print $content ?>
|
| 31 |
</div>
|
| 32 |
|
| 33 |
<div class="c_clear"> </div>
|
| 34 |
|
| 35 |
<div class="meta">
|
| 36 |
<?php if ($taxonomy) { ?>
|
| 37 |
<div class="c_node_terms terms"><?php print $terms ?></div>
|
| 38 |
<?php } ?>
|
| 39 |
</div>
|
| 40 |
|
| 41 |
<?php if ($links) { ?>
|
| 42 |
<div class="c_node_links c_links"><?php print $links; ?></div>
|
| 43 |
<?php } ?>
|
| 44 |
|
| 45 |
</div>
|
| 46 |
</div>
|