/
home
/
rekodeb
/
osteo
/
wp-content
/
themes
/
zuperla
/
Upload File
HOME
<?php get_header(); ?> <?php zuperla_eutf_print_header_title( 'blog' ); ?> <?php zuperla_eutf_print_header_breadcrumbs( 'post' ); ?> <!-- CONTENT --> <div id="eut-content" class="clearfix <?php echo zuperla_eutf_sidebar_class( 'blog' ); ?>"> <div class="eut-content-wrapper"> <!-- MAIN CONTENT --> <div id="eut-main-content"> <div class="eut-main-content-wrapper clearfix"> <div class="eut-section" style="margin-bottom: 0px;"> <div class="eut-container"> <!-- ROW --> <div class="eut-row"> <!-- COLUMN 1 --> <div class="eut-column eut-column-1"> <div class="eut-column-wrapper"> <div class="eut-column-content"> <!-- Blog FitRows --> <?php $zuperla_eutf_blog_mode = zuperla_eutf_option( 'blog_mode', 'large' ); $zuperla_eutf_blog_class = zuperla_eutf_get_blog_class(); ?> <div class="<?php echo esc_attr( $zuperla_eutf_blog_class ); ?>" <?php zuperla_eutf_print_blog_data(); ?>> <?php if ( have_posts() ) : if ( 'large' == $zuperla_eutf_blog_mode || 'small' == $zuperla_eutf_blog_mode ) { ?> <div class="eut-standard-container"> <?php } else { ?> <div class="eut-isotope-container"> <?php } // Start the Loop. while ( have_posts() ) : the_post(); //Get post template get_template_part( 'content', get_post_format() ); endwhile; ?> </div> <?php // Previous/next post navigation. zuperla_eutf_paginate_links(); else : // If no content, include the "No posts found" template. get_template_part( 'content', 'none' ); endif; ?> </div> <!-- End Element Blog --> </div> </div> </div> <!-- END COLUMN 1 --> </div> <!-- END ROW --> </div> </div> </div> </div> <!-- End Content --> <?php zuperla_eutf_set_current_view( 'blog' ); if ( is_front_page() ) { //zuperla_eutf_set_current_view( 'frontpage' ); } ?> <?php get_sidebar(); ?> </div> </div> <?php get_footer(); //Omit closing PHP tag to avoid accidental whitespace output errors.