File: /var/www/html/qcr24/CodeBase_quantum/dev/wp-content/themes/quantum/single.php
<?php
/**
* The template for displaying all single posts and attachments
*
* @package WordPress
* @subpackage quantum
* @since quantum 1.0
*/
get_header(); ?>
<section id="about_area">
<div class="container">
<div class="row">
<?php
// Start the loop.
while ( have_posts() ) : the_post();
?>
<div class="col-lg-6 col-md-12">
<?php the_content(); ?>
</div>
<div class="col-lg-6 col-md-12">
<?php $image_url = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), 'full'); ?>
<img src="<?php bloginfo('template_url'); ?>/includes/timthumb/timthumb.php?src=<?php echo $image_url[0]; ?>&zc=2&a=c&q=100&w=540&h=383" width="100%" alt="" class="blog_img">
</div>
<div class="clearfix"></div>
<?php
// End of the loop.
endwhile;
?>
</div>
</div>
</section>
<?php get_footer(); ?>