itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting"> '; the_post_thumbnail( '', array( 'class' => 'image-hover' ) ) ; echo '' ; endif; echo '
'; get_template_part( 'template-parts/post-header' ); echo '
'; if (esc_attr(get_theme_mod('move_featured','top')) == 'bottom' ) : echo ''; the_post_thumbnail( '', array( 'class' => 'image-hover featured-bottom' ) ) ; echo '' ; endif; echo '
'; // Option of content or excerpt $excerptcontent = esc_attr(get_theme_mod( 'excerpt_content', 'content' )); switch ($excerptcontent) { case "content" : the_content( esc_html__( 'Read More', 'emphasize') ); break; case "excerpt" : echo '

' . the_excerpt() . '

' ; break; } echo '
'; break; // Standard summary left sidebar case "standardleft" : if (esc_attr(get_theme_mod('move_featured','top')) == 'top' ) : echo ''; the_post_thumbnail( '', array( 'class' => 'image-hover' ) ) ; echo '' ; endif; echo '
'; get_template_part( 'template-parts/post-header' ); echo '
'; if (esc_attr(get_theme_mod('move_featured','top')) == 'bottom' ) : echo ''; the_post_thumbnail( '', array( 'class' => 'image-hover featured-bottom' ) ) ; echo '' ; endif; echo '
'; // Option of content or excerpt $excerptcontent = esc_attr(get_theme_mod( 'excerpt_content', 'content' )); switch ($excerptcontent) { case "content" : the_content( esc_html__( 'Read More', 'emphasize') ); break; case "excerpt" : echo '

' . the_excerpt() . '

' ; break; } echo '
'; break; // Standard summary centered no left or right sidebar case "standardcentered" : if (esc_attr(get_theme_mod('move_featured','top')) == 'top' ) : echo ''; the_post_thumbnail( '', array( 'class' => 'image-hover style3 featured-top' ) ) ; echo '' ; endif; echo '
'; get_template_part( 'template-parts/post-header' ); echo '
'; if (esc_attr(get_theme_mod('move_featured','top')) == 'bottom' ) : echo ''; the_post_thumbnail( '', array( 'class' => 'image-hover style3 featured-bottom' ) ) ; echo '' ; endif; echo '
'; // Option of content or excerpt $excerptcontent = esc_attr(get_theme_mod( 'excerpt_content', 'content' )); switch ($excerptcontent) { case "content" : the_content( esc_html__( 'Read More', 'emphasize') ); break; case "excerpt" : echo '

' . the_excerpt() . '

' ; break; } echo '
'; break; // Left featured image with no left or right sidebars case "leftfeatured" : echo '
'; // check for featured image if ( has_post_thumbnail() ) { echo '
' ; } // if no featured image else { echo '
'; } echo '
'; get_template_part( 'template-parts/post-header' ); echo '
'; the_excerpt( ); echo '
'; break; } ?>