File: /home/mciraet/www/wp-content/themes/movedo-child/content.php
<?php if ( is_singular() ) { ?>
<article id="post-<?php the_ID(); ?>" <?php post_class('grve-single-post'); ?> itemscope itemType="http://schema.org/BlogPosting">
<?php
if ( movedo_grve_visibility( 'post_feature_image_visibility', '1' ) && 'yes' != $movedo_grve_disable_media && has_post_thumbnail() ) {
if( movedo_grve_option( 'has_sidebar' ) ) {
$image_size = "medium_large";
} else {
$image_size = "large";
}
?>
<div id="grve-single-media">
<div class="grve-container">
<div class="grve-media clearfix">
<?php the_post_thumbnail( $image_size ); ?>
</div>
</div>
</div>
<?php
}
?>
<div id="grve-single-content">
<?php movedo_grve_print_post_simple_title(); ?>
<?php movedo_grve_print_post_structured_data(); ?>
<div itemprop="articleBody">
<?php the_content(); ?>
</div>
</div>
</article>
<?php } else { ?>
<!-- Article -->
<article id="post-<?php the_ID(); ?>" <?php post_class( $movedo_grve_post_class ); ?> itemscope itemType="http://schema.org/BlogPosting">
<?php do_action( 'movedo_grve_inner_post_loop_item_before' ); ?>
<?php if ( $bg_mode ) { ?>
<?php movedo_grve_print_post_bg_image_container( $bg_options ); ?>
<?php } else { ?>
<?php movedo_grve_print_post_feature_media( 'image' ); ?>
<?php } ?>
<div class="grve-post-content-wrapper">
<div class="grve-post-content">
<?php movedo_grve_print_post_meta_top(); ?>
<?php movedo_grve_print_post_structured_data(); ?>
<div itemprop="articleBody">
<?php movedo_grve_print_post_excerpt(); ?>
</div>
</div>
</div>
<?php do_action( 'movedo_grve_inner_post_loop_item_after' ); ?>
</article>
<!-- End Article -->
<?php } ?>