<?php if ( !defined( 'HABARI_PATH' ) ) { die('No direct access'); } ?>
<?php $theme->display ( 'header' ); ?>
<!--begin content-->
<div id="content">
<!--begin primary content-->
<div id="primaryContent" class="span-15 append-2">
<!--begin loop-->
<!--returns tag name in heading-->
<h2 class="prepend-2"><?php echo $tags_msg; ?></h2>
<?php foreach ( $posts as $post ) { ?>
<div id="post-<?php echo $post->id; ?>" class="<?php echo $post->statusname; ?>">
<h2 class="prepend-2"><a href="<?php echo $post->permalink; ?>" title="<?php echo $post->title; ?>"><?php echo $post->title_out; ?></a></h2>
<div class="entry">
<?php /* @locale Date formats according to http://php.net/manual/en/function.date.php */ echo $post->pubdate->out( _t( 'F j, Y' ) ); ?> - <?php echo $post->content_excerpt; ?>
</div>
<div class="entryMeta">
<?php if ( count( $post->tags ) ) { ?>
<div class="tags"><?php _e('Tagged:'); ?> <?php echo $post->tags_out; ?></div>
<?php } ?>
<div class="commentCount"><?php echo $theme->comments_link($post,'%d Comments','%d Comment','%d Comments'); ?></div>
</div><br>
<?php if ( $loggedin ) { ?>
<a href="<?php echo $post->editlink; ?>" title="<?php _e('Edit post'); ?>"><?php _e('Edit'); ?></a>
<?php } ?>
</div>
<?php } ?>
<!--end loop-->
<div id="pagenav">
<?php echo $theme->prev_page_link('« ' . _t('Newer Results')); ?> <?php echo $theme->page_selector( null, array( 'leftSide' => 2, 'rightSide' => 2 ) ); ?> <?php echo $theme->next_page_link('» ' . _t('Older Results')); ?>
</div>
</div>
<!--end primary content-->
<?php $theme->display ( 'sidebar' ); ?>
</div>
<!--end content-->
<?php $theme->display ( 'footer' ); ?>