HEX
Server: Apache/2.4.41 (Amazon) OpenSSL/1.0.2k-fips PHP/5.6.40
System: Linux ip-172-31-40-18 4.14.146-93.123.amzn1.x86_64 #1 SMP Tue Sep 24 00:45:23 UTC 2019 x86_64
User: apache (48)
PHP: 5.6.40
Disabled: NONE
Upload Files
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();?>