<?php
/**
* ClassicMag Theme
* Designed by hpa
* Coded by misbah (ini_misbah@yahoo.com)
*/
get_header() ?>
<div id="top-container">
<?php include(TEMPLATEPATH.'/includes/slide.php'); ?>
</div>
<div id="content">
<?php include(TEMPLATEPATH.'/includes/glide.php'); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" class="post">
<h3 class="title"><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
<div class="meta">
<span class="meta-left"></span>
<span class="meta-right"></span>
<p><span class="date-post icon"><?php the_time('F j Y') ?></span><span class="comment-post icon"><?php comments_number('No Commented','one Commented','% Commented'); ?></span></p>
<p><span class="categories-post icon">Categorized Under: <?php the_category(', ') ?></span></p><div class="clearleft"></div>
</div>
<div class="entry">
<?php the_content('<span></span>'); ?>
</div>
</div>
<?php endwhile; ?>
<div id="post-nav">
<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?>
<div class="clearleft"></div>
</div><!-- /post-nav -->
<?php else: ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php endif ?>
<?php get_sidebar(); get_footer(); ?>