New Home Page Portfolio

by will525

HTML

<?php 
/*
Template Name: Front Page
*/
?>

<?php get_header(); ?>


    <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>

    <?php endwhile; else: ?><?php endif; ?>
    
<section class="blogger">
    <div class="container">
        <div class="row ">
            <div class="col-sm-12 col-md-12 margin-bottom">
                <h2 class="font-scribble center">Latest Blog Posts</h2>
            </div>
    	</div>
        <div class="row bottom-margin posts">
            <?php
            $recent = new WP_Query();
            $recent->query('showposts=3');
            if($recent->have_posts()) : while($recent->have_posts()): $recent->the_post();
            ?>
            <div class="col-sm-4 col-md-4">
				<div class="hover-effects">
					<div class="grid">
						<!--<a href="<?php the_permalink()?>">-->
							<figure class="effect-bubba">
								<?php the_post_thumbnail('thumbnail', array('class' => 'alignleft')); ?>
								<figcaption>
									<h2><span><?php the_title()?></span></h2>
									<p><?php the_date()?></p>
									<p><?php the_excerpt()?></p>
									<a href="#">View more</a>
								</figcaption>			
							</figure>
						<!--</a>-->
					</div>
				</div>
				
            </div>
            <?php endwhile ?>
            <?php else : ?>
            <?php endif ?>

        </div>

    </div>
</section>


<?php get_footer(); ?>