<?php get_header(); ?>
<?php
$myThemes_layout = new layout( );
if( (int)get_option( 'page_for_posts' ) )
$p = get_post( get_option( 'page_for_posts' ) );
?>
<div class="content">
<div class="line title">
<h1><?php _e( 'Blog Page' , 'myThemes' ); ?></h1>
<?php if( isset( $p ) && isset( $p -> post_content ) && !empty( $p -> post_content ) ) { ?>
<p><?php echo $p -> post_content; ?></p>
<?php } ?>
</div>
<div class="line">
<section class="<?php echo $myThemes_layout -> contentClass(); ?> list-view large-icons">
<?php
if( have_posts() ){
while( have_posts() ){
the_post();
<div class="pr-widget" id="pr-c5sh" style="height:184px;width:547px;"></div>
get_template_part( 'cfg/templates/view/list-view' );
}
}
else{
echo '<h2>' . __( 'Not found results' , 'myThemes' ) . '</h2>';
echo '<p>' . __( 'We apologize but this page, post or resource does not exist or can not be found. Perhaps it is necessary to change the call method to this page, post or resource.' , 'myThemes' ) . '</p>';
}
get_template_part( 'cfg/templates/pagination' );
?>
</section><?php
/* SIDEBAR */
$myThemes_layout -> echoSidebar( );
?>
<div class="clear"></div>
</div>
</div>
<?php get_footer(); ?>