| 1 |
<?php if ($picture) {
|
| 2 |
print $picture;
|
| 3 |
}?>
|
| 4 |
|
| 5 |
<div class="node<?php if ($sticky) { print " sticky"; } ?><?php if (!$status) { print " node-unpublished"; } ?>">
|
| 6 |
|
| 7 |
<?php if ($page == 0) { ?><h2 class="nodeTitle"><a href="<?php print $node_url?>"><?php print $title?></a>
|
| 8 |
<?php global $base_url;
|
| 9 |
if ($sticky) { print '<img src="'.base_path(). drupal_get_path('theme','sanqreal').'/img/sticky.gif" alt="sticky icon" class="sticky" />'; } ?>
|
| 10 |
</h2><?php }; ?>
|
| 11 |
|
| 12 |
<?php if (!$teaser): ?>
|
| 13 |
<?php if ($submitted): ?>
|
| 14 |
<div class="metanode"><p><?php print t('') .'<span class="author">'. theme('username', $node).'</span>' . t(' - Posted on ') . '<span class="date">'.format_date($node->created, 'custom', "d F Y").'</span>'; ?></p>
|
| 15 |
|
| 16 |
|
| 17 |
|
| 18 |
</div>
|
| 19 |
<?php endif; ?>
|
| 20 |
<?php endif; ?>
|
| 21 |
|
| 22 |
<div class="content"><?php print $content?></div>
|
| 23 |
|
| 24 |
|
| 25 |
<?php if (!$teaser): ?>
|
| 26 |
<?php if ($links) { ?><div class="links"><?php print $links?></div><?php }; ?>
|
| 27 |
<?php endif; ?>
|
| 28 |
|
| 29 |
<?php if ($teaser): ?>
|
| 30 |
<?php if ($links) { ?><div class="linksteaser"><div class="links"><?php print $links?></div></div><?php }; ?>
|
| 31 |
<?php endif; ?>
|
| 32 |
|
| 33 |
|
| 34 |
<?php if (!$teaser): ?>
|
| 35 |
<?php if ($terms) { ?><div class="taxonomy"><span><?php print t('tags') ?></span> <?php print $terms?></div><?php } ?>
|
| 36 |
<?php endif; ?>
|
| 37 |
|
| 38 |
|
| 39 |
</div>
|