global $wp_query;
query_posts('post_type=post&paged=' . $wp_query->query_vars['paged']);
while (have_posts()) {
    the_post();
    ?>
 
<div class="post box arc">
<h2 class="entry-title"><a href="<?php 
    the_permalink();
    ?>
"><?php 
    the_title();
    ?>
</a>&nbsp;</h2> 
<?php 
    sensitive_post_thumb('wpeden-bs-blog-thumb');
    ?>
  
<div class="entry-content"><?php 
    the_excerpt();
    ?>
<div class="breadcrumb">Posted on <?php 
    echo get_the_date();
    ?>
 / Posted by <a href="<?php 
    $taid = get_the_author_meta('ID');
    echo get_author_posts_url($taid);
    ?>
"><?php 
    the_author();
    ?>
                        <?php 
    previous_post_link('%link', '<span class="meta-nav">&larr;</span> Previous Post');
    ?>
                        <?php 
    next_post_link('%link', 'Next Post<span class="meta-nav">&rarr;</span>');
    ?>
</nav>
</div>
<div class="clear"></div>
<h1 class="entry-title"><?php 
    the_title();
    ?>
</h1>
<div class="entry-content">
<?php 
    sensitive_post_thumb('wpeden-responsive-post-thumb');
    ?>
  
<?php 
    the_content();
    ?>
</div>
<?php 
    wp_link_pages();
    ?>
</div>
<div class="well tags">
<?php 
    the_tags('Tags: ', ' , ');
    ?>
<div class="clear"></div>
"><?php 
    the_title();
    ?>
</a></h1>
<div class="meta">Posted on <?php 
    the_date();
    ?>
 / Posted by <?php 
    the_author();
    ?>
 / Category <?php 
    the_category(', ');
    ?>
</div>
<?php 
    sensitive_post_thumb('wpeden-post-thumb');
    ?>
<div class="clear"></div>
<p><?php 
    the_content();
    ?>
</p>
<?php 
    wp_link_pages();
    if (get_post_type() == 'attachment') {
        ?>
<div class="alignleft"><?php 
        previous_image_link(0, '&#9668; Previous Image');
        ?>
</div>
<div class="alignright"><?php