| 1 |
<?php k2_comment_wrapper(NULL, $node->type); ?>
|
| 2 |
<div id="node-<?php print $node->nid; ?>" class="hentry node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?>">
|
| 3 |
<div class="entry-head">
|
| 4 |
<?php if ($page == 0): ?>
|
| 5 |
<h3 class="entry-title"><a href="<?php print $node_url ?>" rel="bookmark" title="Permanent Link to <?php print $title ?>"><?php print $title ?></a></h2>
|
| 6 |
<?php endif; ?>
|
| 7 |
<div class="entry-meta">
|
| 8 |
<?php if ($submitted): ?><span class="meta-start">Published</span> <div class="entry-author"><span class="meta-prep">by</span> <address class="vcard author"><?php print $name; ?></address></div> <div class="entry-date"><span class="meta-prep">on</span> <abbr class="published" title="<?php print format_date($node->created)?>"><?php print format_date($node->created)?></abbr></div><?php endif; ?> <?php if (count($taxonomy)): ?><div class="entry-categories"><span class="meta-prep"><?php print t(' in')?></span><?php print $terms; ?></div><?php endif; ?>
|
| 9 |
<?php if ($links): ?><?php print $links; ?><?php endif; ?>
|
| 10 |
<?php if ( node_access('update', $node) ) { ?><span class="entry-edit"><a href="<?php print $node_url ?>/edit" title="Edit post">Edit</a></span><?php }; ?>
|
| 11 |
</div> <!-- .entry-meta -->
|
| 12 |
<?php if ($picture) { print $picture; }?>
|
| 13 |
</div> <!-- .entry-head -->
|
| 14 |
<div class="entry-content">
|
| 15 |
<?php print $content ?>
|
| 16 |
</div> <!-- .entry-content -->
|
| 17 |
</div> <!-- #post-ID -->
|