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: partnership 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="my-breadcrumb">
<div class="container page-banner">
<div class="row">
<div class="col-sm-12 col-md-12 col-xs-12">
<h1>Partnership</h1>
<ol class="breadcrumb">
<li><a href="">Home</a></li>
<li><a href="">Partnership</a></li>
</ol>
</div>
</div>
</div>
</section>
<?php
// Start the Loop.
while ( have_posts() ) : the_post();?>
<section class="photography-section">
<div class="container">
<div class="row">
<div class="col-md-7 col-sm-12 col-xs-12">
<div class="photography-text">
<?php the_content();?>
</div>
</div>
<div class="col-md-5 col-sm-12 col-xs-12">
<div class="imgbox">
<?php $featuredImages = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'full' );?>
<img src="<?php echo $featuredImages[0]; ?>" alt="">
</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-6 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-6 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-6 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-6 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();?>