File: /home/hubdkrco/public_html/wp-content/themes/appyn-2-1/archive-blog.php
<?php get_header(); ?>
	<div class="container">
        <div class="app-p">
            <div class="section blog">
                <?php
                if( have_posts() ): ?>
                <div class="title-section">
                    <?php echo post_type_archive_title( '', false ); ?>
                </div>
                <ul class="bloques">
                <?php 
                $i = 1;
                while( have_posts() ): the_post(); 
                    get_template_part( 'template-parts/loop/blog' );
                    if($i == 3) { 
                        if( !wp_is_mobile() ) echo px_ads( "ads_home" );
                    }
                    $i++; 
                endwhile; 
                ?>
                </ul>
                <?php paginador();
                else: 
                    echo '<div class="no-entries"><p>'.__( 'No hay entradas', 'appyn' ).'</p></div>';
                endif; ?>
            </div>
        </div>
        <?php 
        if( appyn_options( 'blog_sidebar' ) ) {
            get_sidebar( 'blog' ); 
        } else { 
            get_sidebar();
        } ?>
    </div>
<?php get_footer(); ?>