File: /var/www/html/pmw24/wp-content/themes/PunjabMotor/template-page/about-template.php
<?php
/**
* Template Name: About Template
*
* Displays all of the head element and everything up until the "site-content" div.
*
* @package WordPress
* @subpackage Punjab_Motor
* @since Punjab Motor 1.0
*/
?>
<?php get_header();?>
<!-- Header End-->
<?php while ( have_posts() ) : the_post();?>
<div class="inner_body">
<div class="container">
<div class="row">
<div class="col-md-8 col-sm-12 col-xs-12">
<div class="about_l">
<?php the_content();?>
</div>
</div>
<div class="col-md-4 col-sm-12 col-xs-12">
<div class="about_r">
<?php if ( has_post_thumbnail() ) { ?>
<img class="img img-responsive" src="<?php bloginfo('template_url'); ?>/admin/timthumb/timthumb.php?src=<?php the_post_thumbnail_url('full'); ?>&a=c&q=70&w=512&h=391" alt="about image">
<?php } else { ?>
<img class="img img-responsive" src="<?php esc_url( bloginfo('template_directory')); ?>/assets/images/welcome_img.jpg" width="303" height="176" alt="no image img" />
<?php } ?>
</div>
</div>
</div>
</div>
</div>
<?php endwhile;?>
<!-- footer Start-->
<?php get_footer();?>