GIF89a;
Priv8 Uploader By InMyMine7
Linux server.abcbiz.in 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
<?php
/**
* Template Name: Aboout Page
* The front page template file
*
* If the user has selected a static page for their homepage, this is what will
* appear.
* Learn more: https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package WordPress
* @subpackage Twenty_Seventeen
* @since Twenty Seventeen 1.0
* @version 1.0
*/
get_header(); ?>
<section class="vacation-online-wrap">
<img src="<?php echo get_template_directory_uri(); ?>/images/college-students.jpg"/>
<div class="online-title">
<div class="container">
<div class="online-title-dec">
<h1>Vacation Online</h1>
<p><a class="btn btn-primary" href="">Learn more about the virtual courses</a></p>
</div>
</div>
</div>
</section>
<?php
// Start the Loop.
while ( have_posts() ) : the_post();?>
<section class="about-section">
<div class="container">
<div class="row">
<div class="col-md-5 col-sm-12 col-xs-12">
<div class="about-us">
<?php $featuredImages = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'full' );?>
<img src="<?php echo $featuredImages[0]; ?>" alt="">
</div>
</div>
<div class="col-md-7 col-sm-12 col-xs-12">
<div class="about-text">
<?php the_content();?>
</div>
</div>
</div>
</div>
</section>
<?php endwhile;?>
<section class="brand-section text-center">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="heading_box">
<div class="heading_text text-center">
<h1 class="bg-border">Our Partners</h1>
<div class="bg-brd"></div>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="brand-logo zoom1">
<img src="<?php echo get_template_directory_uri(); ?>/images/medscience-logo.png" alt="">
</div>
<h4>Medscience <span>Group</span></h4>
</div>
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="brand-logo zoom1">
<img src="<?php echo get_template_directory_uri(); ?>/images/Work-experience-Logo.png" alt="">
</div>
<h4>Work <span>Experience</span></h4>
</div>
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="brand-logo zoom1">
<img src="<?php echo get_template_directory_uri(); ?>/images/irc.png" alt="">
</div>
<h4> Intense Revision Courses (IRC)</h4>
</div>
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="brand-logo zoom1">
<img src="<?php echo get_template_directory_uri(); ?>/images/CPD-logo-final.png" alt="">
</div>
<h4> Continuing Professional Development (CPD)</h4>
</div>
</div>
</div>
</section>
<?php get_footer();?>