<?php
/*
* Blue Taste Wordpress Theme By Jabox (http://www.jabox.com.ar)
*/  
?>
<?php get_header(); ?>

<div id="content">
	<?php wp_nav_menu(array('theme_location' => 'custom_nav_menu','menu' => 'custom_nav_menu','container_class' => 'cutom-nav-menu','fallback_cb'=>false)); ?>
 	<?php if (have_posts()) : while (have_posts()) : the_post(); ?>

    <div class="post-container">
    <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
		<div class="post-title">
      	  	<?php if (!is_page()) {  ?><div class="post-date"><span class="post-month"><?php the_time('M') ?></span> <span class="post-day"><?php the_time('d') ?></span></div> <?php } ?>
        	<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
         	<?php if (!is_page()) {  ?><span class="post-auth">By <?php the_author(); ?></span><span class="post-comments"><?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></span><?php } ?>
      	</div>
		<div class="entry">
		<?php  if ((!is_single()) && (!is_page()) ) the_post_thumbnail(array(100,100)); ?>
    		<?php the_content('Continue reading this entry &raquo;'); ?>
    		<?php wp_link_pages(); ?> 
      	</div>

  <?php if (is_page()) {
  	  global $id;
  $children = wp_list_pages("title_li=&child_of=$id&show_date=modified&echo=0");
  if ($children) {
  	?> 
  <h3>More under this page: </h3>
  <ul>
  <?php   wp_list_pages("title_li=&child_of=$id&show_date=modified");?>
  </ul>
  <?php }} ?>
      <?php if (!is_page()) {  ?><div class="post-cat"><?php the_category(', ') ?></div><?php } ?>
      <?php if (!is_page()) {  ?><div class="post-tag"><?php the_tags('') ?></div><?php } ?>
      <div style="clear: both"></div>
	</div> 
	</div>

<?php comments_template(); ?>
	 <div class="separator"></div>
<?php endwhile; ?>

    <div class="navigation-down"><span class="previous-entries"><?php next_posts_link('&lt; Older') ?></span><span
	class="next-entries"><?php previous_posts_link('Newer &gt;') ?></span>
</div>

	<?php else : ?>

		<h2>Not Found</h2>
<p>Sorry, we couldn't find what you were looking for.</p>

	<?php endif; ?>

 </div>

<?php get_sidebar(); ?>
<?php get_footer(); ?>