Surprise! We've been running on hardware provided by BuyVM for a few months and wanted to show them a little appreciation.
Running a paste site comes with unique challenges, ones that aren't always obvious and hard to control. As such, BuyVM offered us a home where we could worry less about the hosting side of things and focus on maintaining a clean and useful service! Go check them out and show them some love!
Description: Single.php File Code
Submitted by weblizar on November 22, 2014

Section 1 (PHP)

<?php get_header(); ?>
<?php get_template_part('index', 'banner');  ?>     	  	
<div class="content-wrapper hide-until-loading">
	<div class="body-wrapper">
		<div class="container">
			<div class="row">
				<?php while ( have_posts() ) : the_post(); ?>  
				<div class="col-md-9 col-sm-9">
				<!-- Blog Post -->
				<?php get_template_part( 'posts','loop' ); ?>
				<?php get_template_part( 'author','biosocial' );
				weblizar_navigation_posts(); ?> 
				<?php get_template_part( 'author','bio' ); ?> 
				<!-- //Blog Post// -->
				<?php comments_template( '', true ); ?>
				</div>
				<?php endwhile; ?>
			<?php get_sidebar(); ?>
			</div>
		</div>
	</div>
</div>
<?php get_footer(); ?>