• File: microsite.php
  • Full Path: /home/mannonia/www/wp-content/themes/mannoniavocat/template-parts/microsite/microsite.php
  • File size: 460 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php
/**
 * Page microsite template.
 */
?>

<div id="content" class="content" role="main">

	<?php
	if ( have_posts() ) {
		while ( have_posts() ) {
			the_post();
			do_action( 'presscore_before_loop' );
			the_content();
			presscore_display_share_buttons_for_post( 'page' );
			comments_template( '', true );
		}
	} else {
		get_template_part( 'no-results', 'microsite' );
	}
	?>

</div><!-- #content -->

<?php do_action( 'presscore_after_content' ); ?>