| 1 |
<div id="node-<?php print $node->nid; ?>" class="post<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?> <?php print $zebra ?>">
|
| 2 |
<div class="post_left">
|
| 3 |
<div class="date">
|
| 4 |
<span class="post-month">
|
| 5 |
<?php print date('M', $node->created); ?>
|
| 6 |
</span>
|
| 7 |
<span class="post-day">
|
| 8 |
<?php print date('d', $node->created); ?>
|
| 9 |
</span>
|
| 10 |
</div>
|
| 11 |
<?php foreach (taxonomy_node_get_terms($node->nid) as $term) { ?>
|
| 12 |
<div class="bookmark">
|
| 13 |
<?php if ($image = taxonomy_image_display($term->tid)) { print '<div class="book_item">'.$image.'</div>'; } ?>
|
| 14 |
</div>
|
| 15 |
<?php } ?>
|
| 16 |
</div>
|
| 17 |
<div class="post_right">
|
| 18 |
<div class="post_header">
|
| 19 |
<?php if ($taxonomy) { print '<div class="categories">' . $terms . '</div>'; } ?>
|
| 20 |
<h2 class="titleh2"><a href="<?php print $node_url; ?>" rel="bookmark" title="Permanent Link to <?php print $title; ?>">
|
| 21 |
<?php print $title; ?>
|
| 22 |
</a></h2>
|
| 23 |
</div>
|
| 24 |
<div class="post_content">
|
| 25 |
<div class="post_entry">
|
| 26 |
<?php print $picture ?>
|
| 27 |
<?php print $content; ?>
|
| 28 |
<div class="post_bottom">
|
| 29 |
<strong>
|
| 30 |
<?php print t('Author'); ?>
|
| 31 |
:</strong>
|
| 32 |
<?php print $name; ?>
|
| 33 |
<?php if ($links) { print '<div class="comments">' . $links . '</div>'; } ?>
|
| 34 |
</div>
|
| 35 |
<div class="clear-block clear">
|
| 36 |
</div>
|
| 37 |
</div>
|
| 38 |
</div>
|
| 39 |
</div>
|
| 40 |
</div>
|