Old Home Portfolio

by will525

HTML

<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="img-blog">
                    <?php the_post_thumbnail('thumbnail', array('class' => 'alignleft')); ?>
                </div>
			<div class="circle-image"></div>
                <h3 class="font-brand"><a href="<?php the_permalink()?>"><?php the_title()?></a></h3>
                <div class="blog-teaser-meta"><?php the_date()?></div>
                
				<?php the_excerpt()?>
				
            </div>
            <?php endwhile ?>
            <?php else : ?>
            <?php endif ?>

        </div>